{"id":1201,"date":"2023-02-20T13:03:34","date_gmt":"2023-02-20T12:03:34","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1201"},"modified":"2023-03-19T02:49:55","modified_gmt":"2023-03-19T01:49:55","slug":"flutterwave-payment-integration-with-php","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/","title":{"rendered":"FlutterWave Payment Integration With PHP"},"content":{"rendered":"\n<p>FlutterWave payment integration with PHP can be a tedious process if you&#8217;re just starting out.<\/p>\n\n\n\n<p>Payment integration is the process of integrating a payment gateway or processor into a website or application to enable users to make online payments. This allows businesses to accept payments from customers using a variety of payment methods, such as credit and debit cards, digital wallets, bank transfers, and more. Some popular payment gateway providers include PayPal, Stripe, Authorize.net, Square, and Braintree, among others.<\/p>\n\n\n\n<p>Payment integration is an essential component of e-commerce websites, online marketplaces, and mobile applications that facilitate transactions. It helps to streamline the payment process, making it faster and more convenient for customers to make purchases. In addition, payment integration can provide added security measures, such as fraud detection and prevention, to ensure that transactions are safe and secure.<\/p>\n\n\n\n<p>To implement payment integration, developers typically use application programming interfaces (APIs) provided by the payment gateway provider to connect the payment system to the website or application.<\/p>\n\n\n\n<p>Together with PayStack, FlutterWave is one of the most popular payment platforms in Africa.<\/p>\n\n\n\n<p>It has a rich documentation which <a href=\"https:\/\/developer.flutterwave.com\" target=\"_blank\" rel=\"noreferrer noopener\">you can follow through<\/a>. But if you&#8217;re pressed for time and also a PHP dev, here&#8217;s a quick and comprehensive implementation for you to follow.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-flutterwave-code-integration-snippet\">FlutterWave Code Integration Snippet<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\"> &lt;?php  \n    $amount = 11300;\n    $first_name = \"Lawson\";\n    $last_name = \"Luke\";\n\n      $request = [\n        'tx_ref' =&gt; time(),\n        'amount' =&gt; $amount,\n        'currency' =&gt; 'NGN',\n        'payment_options' =&gt; 'card',\n        'redirect_url' =&gt; 'your_success.php', \/\/replace with yours\n        'customer' =&gt; [\n            'email' =&gt; $email,\n            'name' =&gt; $first_name. ' '.$last_name\n        ],\n        'meta' =&gt; [\n            'price' =&gt; $amount\n        ],\n        'customizations' =&gt; [\n            'title' =&gt; 'Paying for a service', \/\/Set your title\n            'description' =&gt; 'Level'\n        ]\n    ];\n\n    \/\/* Call fluterwave endpoint\n    $curl = curl_init();\n\n    curl_setopt_array($curl, array(\n    CURLOPT_URL =&gt; 'https:\/\/api.flutterwave.com\/v3\/payments', \/\/don't change this\n    CURLOPT_RETURNTRANSFER =&gt; true,\n    CURLOPT_ENCODING =&gt; '',\n    CURLOPT_MAXREDIRS =&gt; 10,\n    CURLOPT_TIMEOUT =&gt; 0,\n    CURLOPT_FOLLOWLOCATION =&gt; true,\n    CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n    CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n    CURLOPT_POSTFIELDS =&gt; json_encode($request),\n    CURLOPT_HTTPHEADER =&gt; array(\n        'Authorization: Bearer YOUR_SECRET KEY',\n        'Content-Type: application\/json'\n    ),\n    ));\n\n    $response = curl_exec($curl);\n\n    curl_close($curl);\n    \n    $res = json_decode($response);\n    if($res-&gt;status == 'success')\n    {\n        $link = $res-&gt;data-&gt;link;\n        header('Location: '.$link);\n    }\n    else\n    {\n        \/\/ echo 'We can not process your payment';\n        echo $res-&gt;status;\n    }\n ?&gt;<\/code><\/pre>\n\n\n\n<p>Don&#8217;t forget to add Secret key and set your redirect link.<\/p>\n\n\n\n<p>You should have something like this.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-2023-02-13-at-15.03.17-1024x572.png\" alt=\"flutterWave payment integration with PHP\" class=\"wp-image-1202\" width=\"575\" height=\"321\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-2023-02-13-at-15.03.17-1024x572.png 1024w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-2023-02-13-at-15.03.17-300x168.png 300w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-2023-02-13-at-15.03.17-768x429.png 768w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-2023-02-13-at-15.03.17.png 1431w\" sizes=\"auto, (max-width: 575px) 100vw, 575px\" \/><figcaption class=\"wp-element-caption\">FlutterWave Payment integration with PHP<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-summary\">Summary<\/h2>\n\n\n\n<p>Overall, payment integration is a critical aspect of software development for any business that wants to accept online payments. By integrating a payment gateway, businesses can improve their online presence and provide a more convenient, secure, and reliable payment experience for their customers.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-start-learning-software-development\"><a href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.codefussion\" target=\"_blank\" rel=\"noreferrer noopener\">Start Learning Software Development<\/a><\/h2>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-install-composer-on-namecheap-server\"><a href=\"https:\/\/codeflarelimited.com\/blog\/how-to-install-composer-on-namecheap-server\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Install Composer on NameCheap Server<\/a><\/h2>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-do-i-start-a-software-development-journey\"><a href=\"https:\/\/codeflarelimited.com\" target=\"_blank\" rel=\"noreferrer noopener\">How Do I Start A Software Development Journey?<\/a><\/h2>\n","protected":false},"excerpt":{"rendered":"<p>FlutterWave payment integration with PHP can be a tedious process if you&#8217;re just starting out. Payment integration is<\/p>\n","protected":false},"author":1,"featured_media":1203,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[98],"tags":[],"class_list":["post-1201","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-softare-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>FlutterWave Payment Integration With PHP<\/title>\n<meta name=\"description\" content=\"FlutterWave payment integration with PHP can be a tedious process if you&#039;re just starting out. Together with PayStack, FlutterWave is one of\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FlutterWave Payment Integration With PHP\" \/>\n<meta property=\"og:description\" content=\"FlutterWave payment integration with PHP can be a tedious process if you&#039;re just starting out. Together with PayStack, FlutterWave is one of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-20T12:03:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-19T01:49:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Untitled-Design-5.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"FlutterWave Payment Integration With PHP\",\"datePublished\":\"2023-02-20T12:03:34+00:00\",\"dateModified\":\"2023-03-19T01:49:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/\"},\"wordCount\":304,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Untitled-Design-5.jpeg\",\"articleSection\":[\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/\",\"name\":\"FlutterWave Payment Integration With PHP\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Untitled-Design-5.jpeg\",\"datePublished\":\"2023-02-20T12:03:34+00:00\",\"dateModified\":\"2023-03-19T01:49:55+00:00\",\"description\":\"FlutterWave payment integration with PHP can be a tedious process if you're just starting out. Together with PayStack, FlutterWave is one of\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Untitled-Design-5.jpeg\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Untitled-Design-5.jpeg\",\"width\":1200,\"height\":628,\"caption\":\"flutterWave payment integration with PHP\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/flutterwave-payment-integration-with-php\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"FlutterWave Payment Integration With PHP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FlutterWave Payment Integration With PHP","description":"FlutterWave payment integration with PHP can be a tedious process if you're just starting out. Together with PayStack, FlutterWave is one of","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:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/","og_locale":"en_US","og_type":"article","og_title":"FlutterWave Payment Integration With PHP","og_description":"FlutterWave payment integration with PHP can be a tedious process if you're just starting out. Together with PayStack, FlutterWave is one of","og_url":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2023-02-20T12:03:34+00:00","article_modified_time":"2023-03-19T01:49:55+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Untitled-Design-5.jpeg","type":"image\/jpeg"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"FlutterWave Payment Integration With PHP","datePublished":"2023-02-20T12:03:34+00:00","dateModified":"2023-03-19T01:49:55+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/"},"wordCount":304,"commentCount":8,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Untitled-Design-5.jpeg","articleSection":["softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/","url":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/","name":"FlutterWave Payment Integration With PHP","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Untitled-Design-5.jpeg","datePublished":"2023-02-20T12:03:34+00:00","dateModified":"2023-03-19T01:49:55+00:00","description":"FlutterWave payment integration with PHP can be a tedious process if you're just starting out. Together with PayStack, FlutterWave is one of","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Untitled-Design-5.jpeg","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Untitled-Design-5.jpeg","width":1200,"height":628,"caption":"flutterWave payment integration with PHP"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"FlutterWave Payment Integration With PHP"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/02\/Untitled-Design-5.jpeg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1201","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1201"}],"version-history":[{"count":3,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1201\/revisions"}],"predecessor-version":[{"id":1234,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1201\/revisions\/1234"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1203"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1201"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1201"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1201"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}