{"id":5194,"date":"2019-03-06T17:48:59","date_gmt":"2019-03-06T12:18:59","guid":{"rendered":"https:\/\/www.innovationm.com\/blog\/?p=5194"},"modified":"2023-01-20T18:55:31","modified_gmt":"2023-01-20T13:25:31","slug":"paytm-integration-in-swift","status":"publish","type":"post","link":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/","title":{"rendered":"Paytm Integration in Swift"},"content":{"rendered":"<p>This blog is about how to integrate Paytm with the iOS App.<\/p>\n<h2>Steps to integrate paytm via SDK<\/h2>\n<h3><strong>1. Import the library :<\/strong><\/h3>\n<p>A library can be imported by two process :<\/p>\n<p><strong>a) Via pods<\/strong><\/p>\n<ul>\n<li>Add <strong>pod &#8216;Paytm-Payments&#8217;<\/strong> in the pod file.<\/li>\n<li>Run &#8216;pod install&#8217; from terminal.<\/li>\n<li>Now open the\u00a0<strong>xcworkspace<\/strong><\/li>\n<li>Go to &#8220;Link Binary With Libraries&#8221; in the &#8220;Build Phases&#8221; in the project settings, and add <strong>SystemConfiguration.framework<\/strong><\/li>\n<li>Now Check if <strong>PaytmSDK.framework<\/strong> is added in both \u201cLink Binary With Libraries\u201d and \u201cEmbedded Binaries\u201d. If not, add by clicking on the plus icon<\/li>\n<\/ul>\n<p><strong>b) Via direct add library to the project<\/strong><\/p>\n<ul>\n<li>Download SDK from the\u00a0<a href=\"https:\/\/github.com\/Paytm-Payments\/Paytm_iOS_App_Kit\/tree\/master\/Swift\">https:\/\/github.com\/Paytm-Payments\/Paytm_iOS_App_Kit\/tree\/master\/Swift<\/a><\/li>\n<li>Add\u00a0<strong>Paytm.framework<\/strong> to the project<\/li>\n<li>Go to &#8220;Link Binary With Libraries&#8221; in the &#8220;Build Phases&#8221; in the project settings, and add <strong>SystemConfiguration.framework<\/strong><\/li>\n<li>Now Check if <strong>PaytmSDK.framework<\/strong> is added in both \u201cLink Binary With Libraries\u201d and \u201cEmbedded Binaries\u201d. If not, add by clicking on the plus icon<\/li>\n<\/ul>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"wp-image-5202 size-full aligncenter\" src=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/Screenshot-2019-03-05-at-1.52.34-PM.png\" alt=\"\" width=\"743\" height=\"659\" srcset=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/Screenshot-2019-03-05-at-1.52.34-PM.png 743w, https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/Screenshot-2019-03-05-at-1.52.34-PM-300x266.png 300w, https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/Screenshot-2019-03-05-at-1.52.34-PM-624x553.png 624w\" sizes=\"(max-width: 743px) 100vw, 743px\" \/><\/p>\n<h3>2. <strong>Add PaytmSDK to ViewController<\/strong><\/h3>\n<pre class=\"lang:swift decode:true\">import PaymentSDK<\/pre>\n<h3>3. Generate Checksum<\/h3>\n<p>Checksumhash is a unique id used by the paytm to ensured that the transaction has not been tempered. Checksumhash has been generated from serverside.<\/p>\n<h3>4. Start the payment process<\/h3>\n<p>A transaction can be done via the following process<\/p>\n<ol>\n<li>Firstly choose the paytm server based on the environment. For <strong>Staging<\/strong>\u00a0Create an instance of the\u00a0 PGServerEnvironment and set the\u00a0<code>serverType<\/code>\u00a0to <strong>eServerTypeStaging<\/strong>.\u00a0For <strong>Production<\/strong>\u00a0Create an instance of the\u00a0 PGServerEnvironment and set the\u00a0<code>serverType<\/code>\u00a0to <strong>eServerTypeProduction<\/strong>.<\/li>\n<li>Now create the <strong>PGOrder<\/strong> instance with all the parameters.<\/li>\n<li>Create the<strong> PGTransactionViewController <\/strong>instance<strong>\u00a0<\/strong>by calling<strong> initTransactionForOrder <\/strong>and pass the instance of PGOrder as a parameter.<\/li>\n<\/ol>\n<pre class=\"lang:swift decode:true\">    private func setupPaytm() {\r\n        \r\n        serv = serv.createStagingEnvironment()\r\n        let type :ServerType = .eServerTypeStaging\r\n        let order = PGOrder(orderID: \"\", customerID: \"\", amount: \"\", eMail: \"\", mobile: \"\")\r\n  \r\n        order.params = [\"MID\":\"rxazcv89315285234363\",\r\n                        \"ORDER_ID\":\"order1\",\r\n                        \"CUST_ID\": \"121\",\r\n                        \"CHANNEL_ID\":\"WAP\",\r\n                        \"INDUSTRY_TYPE_ID\":\"Retail\",\r\n                        \"WEBSITE\": \"APP_STAGING\",\r\n                        \"TXN_AMOUNT\": \"1024\",\r\n                        \"CHECKSUMHASH\":\"oCDBVF+hvVb68JvzbKI40TOtcxlNjMdixi9FnRSh80Ub7XfjvgNr9NrfrOCPLmt65UhStCkrDnlYkclz1qE0uBMOrmuKLGlybuErulbLYSQ=\",\r\n                        \"CALLBACK_URL\" :\"https:\/\/securegw-stage.paytm.in\/theia\/paytmCallback?ORDER_ID=order1\"]\r\n        \r\n        self.txnController =  self.txnController.initTransaction(for: order) as?PGTransactionViewController\r\n        self.txnController.title = \"Paytm Payments\"\r\n        self.txnController.setLoggingEnabled(true)\r\n        \r\n        if(type != ServerType.eServerTypeNone) {\r\n            self.txnController.serverType = type;\r\n        } else {\r\n            return\r\n        }\r\n        \r\n        self.txnController.merchant = PGMerchantConfiguration.defaultConfiguration()\r\n        self.txnController.delegate = self\r\n        \r\n        self.navigationController?.pushViewController(self.txnController\r\n            , animated: true)\r\n    }<\/pre>\n<h3>5. Implement protocol\u00a0 &#8216;<strong>PGTransactionDelegate&#8217;\u00a0<\/strong><\/h3>\n<p>Implement protocol\u00a0 &#8216;PGTransactionDelegate&#8217; to the viewcontroller from where have to do payment<\/p>\n<pre class=\"lang:swift decode:true\">\/\/MARK : Delegate Methods\r\n\r\nextension ScheduleOnOderVC : PGTransactionDelegate {\r\n    \r\n    \/\/this function triggers when transaction gets finished\r\n    func didFinishedResponse(_ controller: PGTransactionViewController, response responseString: String) {\r\n        \r\n        let msg : String = responseString\r\n        var titlemsg : String = \"\"\r\n        if let data = responseString.data(using: String.Encoding.utf8) {\r\n            do {\r\n                if let jsonresponse = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as? [String:Any] , jsonresponse.count &gt; 0{\r\n                    titlemsg = jsonresponse[\"STATUS\"] as? String ?? \"\"\r\n                }\r\n            } catch {\r\n                print(\"Something went wrong\")\r\n            }\r\n        }\r\n        \r\n        let actionSheetController: UIAlertController = UIAlertController(title: titlemsg , message: msg, preferredStyle: .alert)\r\n        let cancelAction : UIAlertAction = UIAlertAction(title: \"OK\", style: .cancel) {\r\n            action -&gt; Void in\r\n            controller.navigationController?.popViewController(animated: true)\r\n        }\r\n        actionSheetController.addAction(cancelAction)\r\n        self.present(actionSheetController, animated: true, completion: nil)\r\n    }\r\n    \/\/this function triggers when transaction gets cancelled\r\n    func didCancelTrasaction(_ controller : PGTransactionViewController) {\r\n        controller.navigationController?.popViewController(animated: true)\r\n    }\r\n    \/\/Called when a required parameter is missing.\r\n    func errorMisssingParameter(_ controller : PGTransactionViewController, error : NSError?) {\r\n        controller.navigationController?.popViewController(animated: true)\r\n    }\r\n}\r\n<\/pre>\n<h3>6. Verify checksum<\/h3>\n<p>Checksumhash needs to be verified so that response have not been tampered. Verification is done on the server side.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This blog is about how to integrate Paytm with the iOS App. Steps to integrate paytm via SDK 1. Import the library : A library can be imported by two process : a) Via pods Add pod &#8216;Paytm-Payments&#8217; in the pod file. Run &#8216;pod install&#8217; from terminal. Now open the\u00a0xcworkspace Go to &#8220;Link Binary With [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5210,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3,71],"tags":[333,332,331,334],"class_list":["post-5194","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ios","category-mobile","tag-paytm-in-ios","tag-paytm-in-swift","tag-paytm-integration","tag-paytm-swift"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Paytm Integration in Swift - InnovationM - Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Paytm Integration in Swift - InnovationM - Blog\" \/>\n<meta property=\"og:description\" content=\"This blog is about how to integrate Paytm with the iOS App. Steps to integrate paytm via SDK 1. Import the library : A library can be imported by two process : a) Via pods Add pod &#8216;Paytm-Payments&#8217; in the pod file. Run &#8216;pod install&#8217; from terminal. Now open the\u00a0xcworkspace Go to &#8220;Link Binary With [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/\" \/>\n<meta property=\"og:site_name\" content=\"InnovationM - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-06T12:18:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-20T13:25:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/paytm.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1139\" \/>\n\t<meta property=\"og:image:height\" content=\"637\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InnovationM Admin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InnovationM Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/\"},\"author\":{\"name\":\"InnovationM Admin\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"headline\":\"Paytm Integration in Swift\",\"datePublished\":\"2019-03-06T12:18:59+00:00\",\"dateModified\":\"2023-01-20T13:25:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/\"},\"wordCount\":306,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/paytm.png\",\"keywords\":[\"Paytm in IOS\",\"Paytm in Swift\",\"Paytm Integration\",\"Paytm Swift\"],\"articleSection\":[\"iOS\",\"Mobile\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/\",\"name\":\"Paytm Integration in Swift - InnovationM - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/paytm.png\",\"datePublished\":\"2019-03-06T12:18:59+00:00\",\"dateModified\":\"2023-01-20T13:25:31+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/paytm.png\",\"contentUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/paytm.png\",\"width\":1139,\"height\":637},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/paytm-integration-in-swift\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Paytm Integration in Swift\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\",\"name\":\"InnovationM - Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\",\"name\":\"InnovationM Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"caption\":\"InnovationM Admin\"},\"sameAs\":[\"http:\\\/\\\/www.innovationm.com\\\/\"],\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/author\\\/innovationmadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Paytm Integration in Swift - InnovationM - Blog","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:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/","og_locale":"en_US","og_type":"article","og_title":"Paytm Integration in Swift - InnovationM - Blog","og_description":"This blog is about how to integrate Paytm with the iOS App. Steps to integrate paytm via SDK 1. Import the library : A library can be imported by two process : a) Via pods Add pod &#8216;Paytm-Payments&#8217; in the pod file. Run &#8216;pod install&#8217; from terminal. Now open the\u00a0xcworkspace Go to &#8220;Link Binary With [&hellip;]","og_url":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/","og_site_name":"InnovationM - Blog","article_published_time":"2019-03-06T12:18:59+00:00","article_modified_time":"2023-01-20T13:25:31+00:00","og_image":[{"width":1139,"height":637,"url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/paytm.png","type":"image\/png"}],"author":"InnovationM Admin","twitter_misc":{"Written by":"InnovationM Admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/#article","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/"},"author":{"name":"InnovationM Admin","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"headline":"Paytm Integration in Swift","datePublished":"2019-03-06T12:18:59+00:00","dateModified":"2023-01-20T13:25:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/"},"wordCount":306,"commentCount":0,"image":{"@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/paytm.png","keywords":["Paytm in IOS","Paytm in Swift","Paytm Integration","Paytm Swift"],"articleSection":["iOS","Mobile"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/","url":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/","name":"Paytm Integration in Swift - InnovationM - Blog","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/#primaryimage"},"image":{"@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/paytm.png","datePublished":"2019-03-06T12:18:59+00:00","dateModified":"2023-01-20T13:25:31+00:00","author":{"@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"breadcrumb":{"@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/#primaryimage","url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/paytm.png","contentUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2019\/03\/paytm.png","width":1139,"height":637},{"@type":"BreadcrumbList","@id":"https:\/\/www.innovationm.com\/blog\/paytm-integration-in-swift\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.innovationm.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Paytm Integration in Swift"}]},{"@type":"WebSite","@id":"https:\/\/www.innovationm.com\/blog\/#website","url":"https:\/\/www.innovationm.com\/blog\/","name":"InnovationM - Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.innovationm.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed","name":"InnovationM Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","caption":"InnovationM Admin"},"sameAs":["http:\/\/www.innovationm.com\/"],"url":"https:\/\/www.innovationm.com\/blog\/author\/innovationmadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/5194","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/comments?post=5194"}],"version-history":[{"count":0,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/5194\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media\/5210"}],"wp:attachment":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media?parent=5194"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/categories?post=5194"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/tags?post=5194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}