{"id":2784,"date":"2025-01-11T07:25:05","date_gmt":"2025-01-11T07:25:05","guid":{"rendered":"https:\/\/buddyinfotech.in\/blog\/?p=2784"},"modified":"2025-01-11T07:25:05","modified_gmt":"2025-01-11T07:25:05","slug":"lines-api-for-developers-how-to-build-custom-solutions-and-integrations","status":"publish","type":"post","link":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/","title":{"rendered":"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations"},"content":{"rendered":"<p><strong>LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations<\/strong><\/p>\n<p>LINE is more than just a messaging app\u2014it\u2019s a platform that enables businesses and developers to create custom solutions and integrations using its powerful API offerings. Whether you&#8217;re looking to build chatbots, create automated workflows, or integrate LINE with your existing systems, LINE&#8217;s API provides all the tools you need.<\/p>\n<p>In this guide, we&#8217;ll walk through how to use LINE\u2019s API to build custom solutions, step-by-step, including its various components, authentication methods, and examples of use cases.<\/p>\n<hr \/>\n<h3>1. <strong>Overview of LINE&#8217;s API Ecosystem<\/strong><\/h3>\n<p>LINE offers several key APIs and services designed to enhance the capabilities of businesses and developers. The two main components for building custom solutions are:<\/p>\n<ul>\n<li><strong>LINE Messaging API<\/strong>: This API allows you to build chatbots, send messages, and interact with users through LINE&#8217;s messaging platform. It\u2019s one of the most popular ways to automate communication with customers.<\/li>\n<li><strong>LINE Login API<\/strong>: This API enables users to log in to your website or app using their LINE account, simplifying the user authentication process.<\/li>\n<li><strong>LINE Pay API<\/strong>: For developers looking to integrate mobile payment capabilities, the LINE Pay API allows you to process payments and manage transactions directly through the LINE platform.<\/li>\n<\/ul>\n<p>These APIs can be used in combination or independently, depending on your needs.<\/p>\n<hr \/>\n<h3>2. <strong>Setting Up Your LINE Developer Account<\/strong><\/h3>\n<p>To start working with LINE\u2019s APIs, you\u2019ll need to create a developer account and set up your LINE Messaging API. Here&#8217;s how to get started:<\/p>\n<h4><strong>Step-by-Step Process for Account Setup:<\/strong><\/h4>\n<ol>\n<li><strong>Create a LINE Developer Account<\/strong>: Go to the <a href=\"https:\/\/developers.line.biz\/\">LINE Developer Console<\/a> and sign up for a LINE developer account using your LINE account credentials.<\/li>\n<li><strong>Create a New Provider<\/strong>: In the developer console, a <em>provider<\/em> represents an entity that creates and manages applications. Set up a new provider for your business or app.<\/li>\n<li><strong>Create a New Channel<\/strong>: Once your provider is set up, create a new <em>channel<\/em>. This channel will be used for the application you\u2019re developing (e.g., your chatbot or integration).<\/li>\n<li><strong>Obtain Channel ID and Secret<\/strong>: Each channel will have a unique ID and secret key, which you\u2019ll use to authenticate your API requests.<\/li>\n<\/ol>\n<h4><strong>Requirements for LINE Messaging API<\/strong>:<\/h4>\n<ul>\n<li><strong>LINE Account<\/strong>: Your business or application must have an official LINE account.<\/li>\n<li><strong>Messaging API Enabled<\/strong>: Ensure that the Messaging API is enabled for your channel in the developer console.<\/li>\n<li><strong>Webhook URL<\/strong>: For real-time communication, configure a webhook URL where incoming messages and user actions can be received.<\/li>\n<\/ul>\n<hr \/>\n<h3>3. <strong>LINE Messaging API: Key Features<\/strong><\/h3>\n<p>The LINE Messaging API allows you to send and receive messages, manage user interactions, and create automated workflows. Below are some of the key features:<\/p>\n<h4><strong>Sending Messages<\/strong>:<\/h4>\n<ul>\n<li><strong>Text Messages<\/strong>: Send simple text messages to users.<\/li>\n<li><strong>Rich Content<\/strong>: Send rich media such as images, carousels, and buttons. This is particularly useful for creating interactive experiences.<\/li>\n<li><strong>Multimedia<\/strong>: Send multimedia content such as videos and audio files.<\/li>\n<\/ul>\n<p><strong>Example of Sending a Text Message via the Messaging API<\/strong>:<\/p>\n<pre><code class=\"language-bash\">POST https:\/\/api.line.me\/v2\/bot\/message\/push\r\nContent-Type: application\/json\r\nAuthorization: Bearer {access_token}\r\n\r\n{\r\n  \"to\": \"{user_id}\",\r\n  \"messages\": [\r\n    {\r\n      \"type\": \"text\",\r\n      \"text\": \"Hello, welcome to our service!\"\r\n    }\r\n  ]\r\n}\r\n<\/code><\/pre>\n<h4><strong>User Interaction<\/strong>:<\/h4>\n<ul>\n<li><strong>Quick Replies<\/strong>: Allow users to quickly reply to messages with pre-defined options.<\/li>\n<li><strong>Buttons and Carousels<\/strong>: Enable users to interact with messages via buttons (e.g., \u201cYes\u201d, \u201cNo\u201d, \u201cLearn More\u201d) or carousel image galleries for richer user engagement.<\/li>\n<\/ul>\n<h4><strong>Handling Events<\/strong>:<\/h4>\n<p>The Messaging API can handle various types of events, including user actions like joining a chat, sending messages, or clicking buttons. You\u2019ll need to set up a webhook to listen for these events.<\/p>\n<p><strong>Example of an Event (e.g., a user sending a message)<\/strong>:<\/p>\n<pre><code class=\"language-json\">{\r\n  \"events\": [\r\n    {\r\n      \"type\": \"message\",\r\n      \"replyToken\": \"{reply_token}\",\r\n      \"source\": {\r\n        \"userId\": \"{user_id}\",\r\n        \"type\": \"user\"\r\n      },\r\n      \"message\": {\r\n        \"type\": \"text\",\r\n        \"text\": \"Hello\"\r\n      }\r\n    }\r\n  ]\r\n}\r\n<\/code><\/pre>\n<h4><strong>Rich Content Example<\/strong>:<\/h4>\n<pre><code class=\"language-json\">{\r\n  \"to\": \"{user_id}\",\r\n  \"messages\": [\r\n    {\r\n      \"type\": \"template\",\r\n      \"altText\": \"This is a carousel template\",\r\n      \"template\": {\r\n        \"type\": \"carousel\",\r\n        \"columns\": [\r\n          {\r\n            \"thumbnailImageUrl\": \"https:\/\/example.com\/image.jpg\",\r\n            \"title\": \"Title 1\",\r\n            \"text\": \"Description 1\",\r\n            \"actions\": [\r\n              {\r\n                \"type\": \"uri\",\r\n                \"label\": \"Go to Website\",\r\n                \"uri\": \"https:\/\/example.com\"\r\n              }\r\n            ]\r\n          },\r\n          {\r\n            \"thumbnailImageUrl\": \"https:\/\/example.com\/image2.jpg\",\r\n            \"title\": \"Title 2\",\r\n            \"text\": \"Description 2\",\r\n            \"actions\": [\r\n              {\r\n                \"type\": \"uri\",\r\n                \"label\": \"Visit Us\",\r\n                \"uri\": \"https:\/\/example2.com\"\r\n              }\r\n            ]\r\n          }\r\n        ]\r\n      }\r\n    }\r\n  ]\r\n}\r\n<\/code><\/pre>\n<hr \/>\n<h3>4. <strong>LINE Login API: Simplify User Authentication<\/strong><\/h3>\n<p>The LINE Login API allows users to log into your website or app using their LINE credentials. This simplifies the login process and increases user convenience. Here\u2019s how you can integrate LINE Login into your application:<\/p>\n<h4><strong>How to Integrate LINE Login<\/strong>:<\/h4>\n<ol>\n<li><strong>Set Up LINE Login Channel<\/strong>: You\u2019ll need to create a <em>LINE Login Channel<\/em> in the LINE Developer Console. This will provide you with your <em>channel ID<\/em> and <em>channel secret<\/em>.<\/li>\n<li><strong>Authentication Flow<\/strong>:\n<ul>\n<li>Redirect users to the LINE login page using the LINE Login URL.<\/li>\n<li>After the user grants permission, LINE will return an authorization code that you can exchange for an access token.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Access User Profile<\/strong>: Once the access token is obtained, you can use it to retrieve user profile data via the LINE Profile API.<\/li>\n<\/ol>\n<p><strong>Example of Redirecting to LINE Login<\/strong>:<\/p>\n<pre><code class=\"language-html\">&lt;a href=\"https:\/\/access.line.me\/oauth2\/v2.1\/authorize?response_type=code&amp;client_id={channel_id}&amp;redirect_uri={redirect_uri}&amp;scope=openid%20profile\"&gt;Login with LINE&lt;\/a&gt;\r\n<\/code><\/pre>\n<hr \/>\n<h3>5. <strong>LINE Pay API: Integrate Payments into Your App<\/strong><\/h3>\n<p>If you want to accept payments through LINE, the LINE Pay API allows you to integrate LINE&#8217;s mobile payment system into your website or app. This is useful for e-commerce businesses, subscription services, or event ticketing.<\/p>\n<h4><strong>How to Integrate LINE Pay<\/strong>:<\/h4>\n<ol>\n<li><strong>Create a LINE Pay Merchant Account<\/strong>: Register for a LINE Pay merchant account and link it to your LINE Official Account.<\/li>\n<li><strong>Set Up Payment Methods<\/strong>: You can create a payment URL for users to make payments through LINE Pay.<\/li>\n<li><strong>Payment Verification<\/strong>: After the user completes the payment, you can verify the transaction status through the LINE Pay API.<\/li>\n<\/ol>\n<p><strong>Example of Initiating Payment via LINE Pay<\/strong>:<\/p>\n<pre><code class=\"language-bash\">POST https:\/\/api.line.me\/v2\/payments\/request\r\nContent-Type: application\/json\r\nAuthorization: Bearer {access_token}\r\n\r\n{\r\n  \"amount\": 1000,\r\n  \"currency\": \"JPY\",\r\n  \"orderId\": \"order12345\",\r\n  \"productName\": \"Product XYZ\",\r\n  \"payType\": \"LINE Pay\"\r\n}\r\n<\/code><\/pre>\n<hr \/>\n<h3>6. <strong>Monitoring and Managing Your API Usage<\/strong><\/h3>\n<p>It\u2019s important to keep track of your API usage and manage your integrations. LINE provides an analytics dashboard where you can monitor:<\/p>\n<ul>\n<li><strong>Message Delivery<\/strong>: Track how many messages have been successfully delivered.<\/li>\n<li><strong>User Interaction<\/strong>: Analyze how users are interacting with your messages, buttons, and carousels.<\/li>\n<li><strong>Error Logs<\/strong>: View any errors in your API requests and identify potential issues.<\/li>\n<\/ul>\n<hr \/>\n<h3>7. <strong>Best Practices for LINE API Development<\/strong><\/h3>\n<ul>\n<li><strong>Security<\/strong>: Always secure your API requests with proper authentication and handle sensitive user data responsibly. Use HTTPS and OAuth 2.0 for secure communication.<\/li>\n<li><strong>Rate Limits<\/strong>: Be aware of LINE&#8217;s rate limits for API usage and ensure that your integration doesn\u2019t exceed these limits to avoid throttling.<\/li>\n<li><strong>Error Handling<\/strong>: Implement proper error handling to gracefully manage failed requests or unexpected events.<\/li>\n<li><strong>User Experience<\/strong>: Design seamless user interactions with clear, actionable content. Use rich media and interactive messages to keep users engaged.<\/li>\n<\/ul>\n<hr \/>\n<h3>Conclusion<\/h3>\n<p>LINE\u2019s APIs offer developers powerful tools to create custom solutions and integrate with LINE\u2019s messaging platform, login system, and payment features. Whether you&#8217;re building a chatbot, simplifying user logins, or enabling mobile payments, LINE provides the necessary resources to deliver innovative experiences for your customers.<\/p>\n<p>By understanding the core APIs and following best practices, you can seamlessly integrate LINE into your business operations, improve customer engagement, and drive growth.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations LINE is more than just a messaging app\u2014it\u2019s a platform that enables businesses and developers to create custom solutions and integrations using its powerful API offerings. Whether you&#8217;re looking to build chatbots, create automated workflows, or integrate LINE with your existing systems, LINE&#8217;s API [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[119],"tags":[],"class_list":["post-2784","post","type-post","status-publish","format-standard","hentry","category-ai-and-the-future-of-work"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations - Blog - Buddy Infotech<\/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:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations - Blog - Buddy Infotech\" \/>\n<meta property=\"og:description\" content=\"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations LINE is more than just a messaging app\u2014it\u2019s a platform that enables businesses and developers to create custom solutions and integrations using its powerful API offerings. Whether you&#8217;re looking to build chatbots, create automated workflows, or integrate LINE with your existing systems, LINE&#8217;s API [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Buddy Infotech\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-11T07:25:05+00:00\" \/>\n<meta name=\"author\" content=\"Buddy Infotech\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Buddy Infotech\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/\"},\"author\":{\"name\":\"Buddy Infotech\",\"@id\":\"https:\/\/buddyinfotech.in\/blog\/#\/schema\/person\/a8d3340239d06cc9b8897c88bde738f3\"},\"headline\":\"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations\",\"datePublished\":\"2025-01-11T07:25:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/\"},\"wordCount\":1083,\"commentCount\":0,\"articleSection\":[\"AI and the Future of Work\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/\",\"url\":\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/\",\"name\":\"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations - Blog - Buddy Infotech\",\"isPartOf\":{\"@id\":\"https:\/\/buddyinfotech.in\/blog\/#website\"},\"datePublished\":\"2025-01-11T07:25:05+00:00\",\"author\":{\"@id\":\"https:\/\/buddyinfotech.in\/blog\/#\/schema\/person\/a8d3340239d06cc9b8897c88bde738f3\"},\"breadcrumb\":{\"@id\":\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/buddyinfotech.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/buddyinfotech.in\/blog\/#website\",\"url\":\"https:\/\/buddyinfotech.in\/blog\/\",\"name\":\"Blog - Buddy Infotech\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/buddyinfotech.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/buddyinfotech.in\/blog\/#\/schema\/person\/a8d3340239d06cc9b8897c88bde738f3\",\"name\":\"Buddy Infotech\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/buddyinfotech.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/54c3c859d314f09e072a6016466a0b332489e0234abb0f3d1fb3bc51f12d90c8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/54c3c859d314f09e072a6016466a0b332489e0234abb0f3d1fb3bc51f12d90c8?s=96&d=mm&r=g\",\"caption\":\"Buddy Infotech\"},\"sameAs\":[\"http:\/\/localhost\/buddyinfotech-blog\"],\"url\":\"https:\/\/buddyinfotech.in\/blog\/author\/buddyinfo-pankaj\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations - Blog - Buddy Infotech","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:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/","og_locale":"en_US","og_type":"article","og_title":"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations - Blog - Buddy Infotech","og_description":"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations LINE is more than just a messaging app\u2014it\u2019s a platform that enables businesses and developers to create custom solutions and integrations using its powerful API offerings. Whether you&#8217;re looking to build chatbots, create automated workflows, or integrate LINE with your existing systems, LINE&#8217;s API [&hellip;]","og_url":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/","og_site_name":"Blog - Buddy Infotech","article_published_time":"2025-01-11T07:25:05+00:00","author":"Buddy Infotech","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Buddy Infotech","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/#article","isPartOf":{"@id":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/"},"author":{"name":"Buddy Infotech","@id":"https:\/\/buddyinfotech.in\/blog\/#\/schema\/person\/a8d3340239d06cc9b8897c88bde738f3"},"headline":"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations","datePublished":"2025-01-11T07:25:05+00:00","mainEntityOfPage":{"@id":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/"},"wordCount":1083,"commentCount":0,"articleSection":["AI and the Future of Work"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/","url":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/","name":"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations - Blog - Buddy Infotech","isPartOf":{"@id":"https:\/\/buddyinfotech.in\/blog\/#website"},"datePublished":"2025-01-11T07:25:05+00:00","author":{"@id":"https:\/\/buddyinfotech.in\/blog\/#\/schema\/person\/a8d3340239d06cc9b8897c88bde738f3"},"breadcrumb":{"@id":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/buddyinfotech.in\/blog\/lines-api-for-developers-how-to-build-custom-solutions-and-integrations\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/buddyinfotech.in\/blog\/"},{"@type":"ListItem","position":2,"name":"LINE\u2019s API for Developers: How to Build Custom Solutions and Integrations"}]},{"@type":"WebSite","@id":"https:\/\/buddyinfotech.in\/blog\/#website","url":"https:\/\/buddyinfotech.in\/blog\/","name":"Blog - Buddy Infotech","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/buddyinfotech.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/buddyinfotech.in\/blog\/#\/schema\/person\/a8d3340239d06cc9b8897c88bde738f3","name":"Buddy Infotech","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/buddyinfotech.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/54c3c859d314f09e072a6016466a0b332489e0234abb0f3d1fb3bc51f12d90c8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/54c3c859d314f09e072a6016466a0b332489e0234abb0f3d1fb3bc51f12d90c8?s=96&d=mm&r=g","caption":"Buddy Infotech"},"sameAs":["http:\/\/localhost\/buddyinfotech-blog"],"url":"https:\/\/buddyinfotech.in\/blog\/author\/buddyinfo-pankaj\/"}]}},"_links":{"self":[{"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/posts\/2784","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/comments?post=2784"}],"version-history":[{"count":1,"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/posts\/2784\/revisions"}],"predecessor-version":[{"id":2785,"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/posts\/2784\/revisions\/2785"}],"wp:attachment":[{"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/media?parent=2784"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/categories?post=2784"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/buddyinfotech.in\/blog\/wp-json\/wp\/v2\/tags?post=2784"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}