{"id":5325,"date":"2014-01-28T11:32:48","date_gmt":"2014-01-28T06:02:48","guid":{"rendered":"http:\/\/mobisoftinfotech.com\/?p=5325"},"modified":"2024-11-27T10:58:34","modified_gmt":"2024-11-27T05:28:34","slug":"sharing-photo-from-android-and-ios-application-over-instagram","status":"publish","type":"post","link":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram","title":{"rendered":"Sharing photo from Android and iOS application over Instagram"},"content":{"rendered":"<p>Instagram is one of the top applications to share pictures, videos with your friends and family. It allows you edit photos taken and add some effects. Android or iOS application can retrieve data from Instagram. Also can share photos from your own application over Instagram.<\/p>\n<p>Instagram provides few APIs to fetch data from Instagram. Also some APIs to post comments and likes over Instagram. All the APIs are based on <a href=\"http:\/\/tools.ietf.org\/html\/draft-ietf-oauth-v2-12\" rel=\"nofollow noopener\">OAuth 2.0 protocol<\/a>.<\/p>\n<p><strong>Link to Instagram APIs enpoints documentation :-<\/strong> <a href=\"http:\/\/instagram.com\/developer\/endpoints\/\" rel=\"nofollow noopener\">http:\/\/instagram.com\/developer\/endpoints\/<\/a><br \/>\n<strong>Tool to test Instagram APIs :-<\/strong> <a href=\"http:\/\/instagram.com\/developer\/api-console\/\" rel=\"nofollow noopener\">http:\/\/instagram.com\/developer\/api-console\/<\/a><\/p>\n<p>However if a developer wants to share photos from his\/her own application Instagram, Instagram does not provide any direct API for that. <a href=\"http:\/\/instagram.com\/developer\/iphone-hooks\/\" rel=\"nofollow noopener\">Iphone hooks<\/a> is a feature provided by Instagram developer community to share photo from iOS application. Instagram does not provide any support to share photos from Android application. Still sharing photos over Instagram is possible via android intent. I would like to share code snippet to share a photo from both Android and iOS along with its limitations.<\/p>\n<h3>Sharing photo from iOS application over Instagram<\/h3>\n<p>Following code snippet shares a photo over Instagram. Caption can be set programmatically for image to be shared. This needs Instagram app installed over your iOS device. If Instagram app is not already installed then it will show alert message saying \u201cTo share image please install Instagram.\u201d. Photo sharing is done using Document Interaction API which open your photo in Instagram.<\/p>\n<pre style=\"color: #000; background: #fff;\">-(void)sharePhotoToInstagram\n{\n\tNSURL *instagramURL = [NSURL URLWithString:@\"instagram:\/\/\"];\n\n\tif ([[UIApplication sharedApplication] canOpenURL:instagramURL])\n\t{\n\t\tCGRect rect = CGRectMake(0,0,0,0);\n\t\tNSString *jpgPath=[NSHomeDirectory() stringByAppendingPathComponent:@\"Documents\/Home_1_instgram.igo\"];\n\t\tUIImage *imageN = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@\"%@\", jpgPath]];\n\n\t\t[UIImagePNGRepresentation(img1) writeToFile:jpgPath atomically:YES];\n\t\tNSURL *igImageHookFile = [[NSURL alloc] initWithString:[[NSString alloc] initWithFormat:@\"file:\/\/%@\",jpgPath]];\n\t\tself.docFile.UTI = @\"com.instagram.exclusivegram\";\n\n\t\tself.docFile = [self setupControllerWithURL:igImageHookFile usingDelegate:self];\n\n\t\tself.docFile.annotation = [NSDictionary dictionaryWithObject:[NSString stringWithFormat:@\"Amazing Video Please watch\\n%@\",videoshareUrl] forKey:@\"InstagramCaption\"];\n\n\t\t[self.docFile presentOpenInMenuFromRect: rect inView: self.view animated: YES ];\n\t}\n\telse\n\t{\n\t\tUIAlertView *alert=[[UIAlertView alloc] initWithTitle:@\"Message\" message:@\"Instagram not installed in this device!\\nTo share image please install instagram.\" delegate:nil cancelButtonTitle:nil otherButtonTitles:@\"ok\", nil];\n\t\t[alert show];\n\t}\n}\n<\/pre>\n<h3>Sharing photo from Android application over Instagram<\/h3>\n<p>Instagram does not provide any direct way to share photos from Android application on Instagram. It is possible via an intent if Instagram application is installed on device. Instagram application has package name \u201ccom.instagram.android\u201d. So intent can be called in following way.<\/p>\n<pre style=\"color: #000; background: #fff;\">private void shareOverstagram(Uri uri) {\n\n\tIntent shareIntent = new Intent(android.content.Intent.ACTION_SEND);\n\tshareIntent.setType(\"image\/*\");\n\tshareIntent.putExtra(Intent.EXTRA_STREAM, uri); \/\/ set uri\n\tshareIntent.setPackage(\"com.instagram.android\");\n\tstartActivity(shareIntent);\n}\t\n<\/pre>\n<p>Above function needs Uri which you want to share over Instagram. This Uri can be of any photo or image from your device SD card. Before calling above function one has to write code to check Instagram is already installed or not.<\/p>\n<pre style=\"color: #000; background: #fff;\">private boolean appInstalledOrNot() {\n\n\tboolean app_installed = false;\n\ttry {\n\t\tApplicationInfo info = activity.getPackageManager().getApplicationInfo(\"com.instagram.android\", 0);\n\t\tapp_installed = true;\n\t} catch (PackageManager.NameNotFoundException e) {\n\t\tapp_installed = false;\n\t}\n\t\treturn app_installed;\n}\n<\/pre>\n<h3>Major limitation of Android as compared to iOS :-<\/h3>\n<p>Major difference between Android and iOS implementation to share photo over Instagram is, one cannot set caption for photo to be shared programmatically in Android. In case of iOS it is possible to set caption for photo through code. Android intent does not recognize any param set in \u201cputExtra\u201d of intent.<\/p>\n<p>I hope Instagram comes up with something soon which allows us to share photo with caption from Android application as well like iOS.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Instagram is one of the top applications to share pictures, videos with your friends and family. It allows you edit photos taken and add some effects. Android or iOS application can retrieve data from Instagram. Also can share photos from your own application over Instagram. Instagram provides few APIs to fetch data from Instagram. Also [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":5610,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_s2mail":"yes","footnotes":""},"categories":[4,3],"tags":[415,419,414,417,418,416,420],"class_list":["post-5325","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-android","category-iphone","tag-android-instagram","tag-android-instagram-intent","tag-instagram","tag-instagram-photo-sharing-from-android-app","tag-instagram-photo-sharing-from-ios-app","tag-ios-instagram","tag-iphone-hooks"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Share photos from Android &amp; iOS application via Instagram | Mobisoft<\/title>\n<meta name=\"description\" content=\"Instagram is one of the top applications to share pictures.Here&#039;s the code on how to share photos from Android and iOS apps over Instagram.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Share photos from Android &amp; iOS application via Instagram | Mobisoft\" \/>\n<meta property=\"og:description\" content=\"Instagram is one of the top applications to share pictures.Here&#039;s the code on how to share photos from Android and iOS apps over Instagram.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram\" \/>\n<meta property=\"og:site_name\" content=\"Mobisoft Infotech\" \/>\n<meta property=\"article:published_time\" content=\"2014-01-28T06:02:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-27T05:28:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"501\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Pallavi Daga\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pallavi Daga\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#article\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram\"},\"author\":{\"name\":\"Pallavi Daga\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6007188bd13c6f4297f1e5e2d0ac60c3\"},\"headline\":\"Sharing photo from Android and iOS application over Instagram\",\"datePublished\":\"2014-01-28T06:02:48+00:00\",\"dateModified\":\"2024-11-27T05:28:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram\"},\"wordCount\":429,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png\",\"keywords\":[\"android instagram\",\"android instagram intent\",\"instagram\",\"instagram photo sharing from android app\",\"instagram photo sharing from iOS app\",\"iOS instagram\",\"iPhone hooks\"],\"articleSection\":[\"Android\",\"iPhone - iPad\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram\",\"name\":\"Share photos from Android & iOS application via Instagram | Mobisoft\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#primaryimage\"},\"image\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png\",\"datePublished\":\"2014-01-28T06:02:48+00:00\",\"dateModified\":\"2024-11-27T05:28:34+00:00\",\"author\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6007188bd13c6f4297f1e5e2d0ac60c3\"},\"description\":\"Instagram is one of the top applications to share pictures.Here's the code on how to share photos from Android and iOS apps over Instagram.\",\"breadcrumb\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#primaryimage\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png\",\"contentUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png\",\"width\":1024,\"height\":501},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mobisoftinfotech.com\/resources\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sharing photo from Android and iOS application over Instagram\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/\",\"name\":\"Mobisoft Infotech\",\"description\":\"Discover Mobility\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mobisoftinfotech.com\/resources\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6007188bd13c6f4297f1e5e2d0ac60c3\",\"name\":\"Pallavi Daga\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/89ef33292eb327c415fedae5adc889ea2243cf389dce05bfe57552c1d8ba54fc?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/89ef33292eb327c415fedae5adc889ea2243cf389dce05bfe57552c1d8ba54fc?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/89ef33292eb327c415fedae5adc889ea2243cf389dce05bfe57552c1d8ba54fc?s=96&r=g\",\"caption\":\"Pallavi Daga\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Share photos from Android & iOS application via Instagram | Mobisoft","description":"Instagram is one of the top applications to share pictures.Here's the code on how to share photos from Android and iOS apps over Instagram.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram","og_locale":"en_US","og_type":"article","og_title":"Share photos from Android & iOS application via Instagram | Mobisoft","og_description":"Instagram is one of the top applications to share pictures.Here's the code on how to share photos from Android and iOS apps over Instagram.","og_url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram","og_site_name":"Mobisoft Infotech","article_published_time":"2014-01-28T06:02:48+00:00","article_modified_time":"2024-11-27T05:28:34+00:00","og_image":[{"width":1024,"height":501,"url":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png","type":"image\/png"}],"author":"Pallavi Daga","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Pallavi Daga","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#article","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram"},"author":{"name":"Pallavi Daga","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6007188bd13c6f4297f1e5e2d0ac60c3"},"headline":"Sharing photo from Android and iOS application over Instagram","datePublished":"2014-01-28T06:02:48+00:00","dateModified":"2024-11-27T05:28:34+00:00","mainEntityOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram"},"wordCount":429,"commentCount":0,"image":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#primaryimage"},"thumbnailUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png","keywords":["android instagram","android instagram intent","instagram","instagram photo sharing from android app","instagram photo sharing from iOS app","iOS instagram","iPhone hooks"],"articleSection":["Android","iPhone - iPad"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram","url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram","name":"Share photos from Android & iOS application via Instagram | Mobisoft","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#primaryimage"},"image":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#primaryimage"},"thumbnailUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png","datePublished":"2014-01-28T06:02:48+00:00","dateModified":"2024-11-27T05:28:34+00:00","author":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6007188bd13c6f4297f1e5e2d0ac60c3"},"description":"Instagram is one of the top applications to share pictures.Here's the code on how to share photos from Android and iOS apps over Instagram.","breadcrumb":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#primaryimage","url":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png","contentUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/Sharing-photo-from-Android-and-iOS-application-over-Instagram_new.png","width":1024,"height":501},{"@type":"BreadcrumbList","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/sharing-photo-from-android-and-ios-application-over-instagram#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mobisoftinfotech.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Sharing photo from Android and iOS application over Instagram"}]},{"@type":"WebSite","@id":"https:\/\/mobisoftinfotech.com\/resources\/#website","url":"https:\/\/mobisoftinfotech.com\/resources\/","name":"Mobisoft Infotech","description":"Discover Mobility","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mobisoftinfotech.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6007188bd13c6f4297f1e5e2d0ac60c3","name":"Pallavi Daga","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/89ef33292eb327c415fedae5adc889ea2243cf389dce05bfe57552c1d8ba54fc?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/89ef33292eb327c415fedae5adc889ea2243cf389dce05bfe57552c1d8ba54fc?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/89ef33292eb327c415fedae5adc889ea2243cf389dce05bfe57552c1d8ba54fc?s=96&r=g","caption":"Pallavi Daga"}}]}},"_links":{"self":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/5325","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/comments?post=5325"}],"version-history":[{"count":14,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/5325\/revisions"}],"predecessor-version":[{"id":32588,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/5325\/revisions\/32588"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media\/5610"}],"wp:attachment":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media?parent=5325"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/categories?post=5325"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/tags?post=5325"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}