{"id":1648,"date":"2024-01-12T05:10:33","date_gmt":"2024-01-12T05:10:33","guid":{"rendered":"https:\/\/www.devopsfreelancer.com\/blog\/?p=1648"},"modified":"2024-02-05T05:15:51","modified_gmt":"2024-02-05T05:15:51","slug":"how-to-get-data-from-1-server-to-another-server-in-laravel","status":"publish","type":"post","link":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/","title":{"rendered":"How to get Data from 1 server to another server in laravel ?"},"content":{"rendered":"\n<p>In this tutorial i&#8217;m going to get the data from 1 server to another server in Laravel.<\/p>\n\n\n\n<p>1st step<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Go to first server and make model for reterieve the data<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan make:model TaskboarData\r<\/code><\/pre>\n\n\n\n<p>Next go to modal and put below code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\r\nnamespace App\\Models;\r\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\r\nuse Illuminate\\Database\\Eloquent\\Model;\r\nclass TaskboarData extends Model\r\n{\r\n    use HasFactory;\r\n    protected $connection = 'mysqltaskbaord';\r\n    protected $table = 'task_boards';\r\n}\r<\/code><\/pre>\n\n\n\n<p>Next go to database.php and put below code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>'mysqltaskbaord' => &#91;\r\n            'driver' => 'mysql',\r\n            'host' => env('DB_HOST_TASKBOARD_COUNT', 'localhost'),\r\n            'port' => env('DB_PORT_TASKBOARD_COUNT', '3306'),\r\n            'database' => env('DB_DATABASE_TASKBOARD_COUNT', 'forge'),\r\n            'username' => env('DB_USERNAME', 'forge'),\r\n            'password' => env('DB_PASSWORD', ''),\r\n            'unix_socket' => env('DB_SOCKET', ''),\r\n            'charset' => 'utf8mb4',\r\n            'collation' => 'utf8mb4_unicode_ci',\r\n            'prefix' => '',\r\n            'strict' => false,\r\n            'engine' => null,\r\n        ],\r\n<\/code><\/pre>\n\n\n\n<p>NEXT GO TO .ENV AND PUT BELOW CODE<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DB_CONNECTION_TASKBOARD=mysql\r\nDB_HOST_TASKBOARD_COUNT=127.0.0.1\r\nDB_PORT_TASKBOARD_COUNT=3306\r\nDB_DATABASE_TASKBOARD_COUNT=wz_tasks_board_ms\r\nDB_USERNAME_USER_COUNT=root\r\nDB_PASSWORD_TASKBOARD_COUNT=\r\nDB_CONNECTION_TASKBOARD=mysql\r\nDB_HOST_TASKBOARD_COUNT=127.0.0.1\r\nDB_PORT_TASKBOARD_COUNT=3306\r\n<\/code><\/pre>\n\n\n\n<p>Next go to another first microservice and create controller<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan make:controller Api\/TaskboardDataController<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\r\nnamespace App\\Http\\Controllers\\Api;\r\nuse GuzzleHttp\\Client;\r\nuse Illuminate\\Http\\Request;\r\nuse Illuminate\\Support\\Facades\\Log;\r\nuse App\\Http\\Controllers\\Controller;\r\nuse Illuminate\\Support\\Facades\\Config;\r\nclass TaskboardDataController extends Controller\r\n{\r\n    private static function getKeywordAccessToken()\r\n    {\r\n        Log::info('In LinkApiController->getAddUrlAccessToken1()');\r\n        try{\r\n            Log::info('SD_KEYWORDS_MS_OAUTH_TOKEN_URL . SD_KEYWORDS_MS_OAUTH_TOKEN_URL: ' . Config::get('app.SD_KEYWORDS_MS_BASE_URL') . Config::get('app.SD_KEYWORDS_MS_OAUTH_TOKEN_URL'));\r\n            Log::info('SD_KEYWORDS_MS_GRAND_TYPE: ' . Config::get('app.SD_KEYWORDS_MS_GRAND_TYPE'));\r\n            Log::info('SD_KEYWORDS_MS_CLIENT_ID: ' . Config::get('app.SD_KEYWORDS_MS_CLIENT_ID'));\r\n            Log::info('SD_KEYWORDS_MS_SECRET: ' . Config::get('app.SD_KEYWORDS_MS_SECRET'));\r\n            Log::info('Getting the token!');\r\n            $http = new Client(); \/\/GuzzleHttp\\Client\r\n            $response = $http->post(\r\n                Config::get('app.SD_KEYWORDS_MS_BASE_URL') . Config::get('app.SD_KEYWORDS_MS_OAUTH_TOKEN_URL'),\r\n                &#91;\r\n                    'form_params' => &#91;\r\n                        'grant_type' => Config::get('app.SD_KEYWORDS_MS_GRAND_TYPE'),\r\n                        'client_id' => Config::get('app.SD_KEYWORDS_MS_CLIENT_ID'),\r\n                        'client_secret' => Config::get('app.SD_KEYWORDS_MS_SECRET'),\r\n                        'redirect_uri' => '',\r\n                    ],\r\n                ]\r\n            );\r\n\r\n            $array = $response->getBody()->getContents();\r\n            $json = json_decode($array, true);\r\n            $collection = collect($json);\r\n            $access_token = $collection->get('access_token');\r\n            Log::info('Got the token!');\r\n                   return $access_token;\r\n        } catch(RequestException $e){\r\n            Log::info('There is some exception in LinkApiController->getAddUrlAccessToken()');\r\n            return $e->getResponse()->getStatusCode() . ': ' . $e->getMessage();\r\n        }\r\n    }\r\n    \/\/get Pagerank function\r\n    public function geturl_all($webranking_data)\r\n    {\r\n        Log::info('keyword finding'.$webranking_data);\r\n        try{\r\n            Log::info('SD_ADD_URL_MS_KEYWORD_DELETE_ALL_URL: ' . Config::get('app.SD_ADD_URL_MS_KEYWORD_DELETE_ALL_URL'));\r\n            $access_token = $this->getAddUrlAccessToken();\r\n            $url = ''\r\n            .Config::get('app.SD_KEYWORDS_MS_BASE_URL')\r\n            .Config::get('app.SD_ADD_URL_MS_KEYWORD_DELETE_ALL_URL')\r\n            .'\/'\r\n            .$webranking_data;\r\n            Log::info('Got the access token from DelelteWebrankingController::WebrankAccessToken().Fetching Webrank!');\r\n            Log::info('ALL Webrank URL: ' . $url);\r\n            $guzzleClient = new Client(); \/\/GuzzleHttp\\Client\r\n            $params = &#91;\r\n                'headers' =>&#91;\r\n                    'Accept' => 'application\/json',\r\n                    'Authorization' => 'Bearer ' .$access_token\r\n                ]\r\n            ];\r\n            $response = $guzzleClient->request('GET', $url, $params);\r\n            Log::info('Got the Response from WB Keyword MS');\r\n            $json = json_decode($response->getBody()->getContents(), true);\r\n            \/\/ Log::info('Number of objects in response: ' . count($json&#91;'data']));\r\n            return $json;\r\n        } catch(\\Exception $e){\r\n            Log::info('There was some exception in DelelteWebrankingController->getWeb_ranking()');\r\n            return $e->getResponse()->getStatusCode(). ':' . $e->getMessage();\r\n        }\r\n    }\r\n}\r\n<\/code><\/pre>\n\n\n\n<p>Next go to .env and put below code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SD_TASK_BOARD_MS_BASE_URL=http:\/\/wz-tasks-board-ms\r\nSD_TASK_BOARD_MS_OAUTH_TOKEN_URL=\/oauth\/token\r\nSD_TASK_BOARD_MS_GRAND_TYPE=client_credentials\r\nSD_TASK_BOARD_MS_CLIENT_ID=3\r\nSD_TASK_BOARD_MS_SECRET=GliKecl41nzcMtrj5Tf8dX8FHVYlkGbWiTsDZR97\r\nSD_TASK_BOARD_MS_ALL_URL=\/api\/v1\/j\/taskboard\r\nSD_TASK_BOARD_MS_KEYWORDTO_TASK_BOARD_DELETE_ALL_URL=\/api\/v1\/j\/taskboard\/keywordToTaskboardDelete\r\nSD_TASKBOARD_MS_KEYWORD_DELETE_ALL_URL=\/api\/v1\/j\/taskboard\/delete_data<\/code><\/pre>\n\n\n\n<p>Next put below code in controller<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>public function geturl_all_task($webranking_data)\r\n    {\r\n        Log::info('abhi url me in kiye hai');\r\n        $getalltask_borad = TaskBoard::where('project_id', $webranking_data)->orwhere('admin_id', $webranking_data)->first();\r\n        $valid_tasktypes = $getalltask_borad&#91;'project_id'];\r\n        $valid_slug_ids = $getalltask_borad&#91;'slug_id'];\r\n        $valid_admin_ids = $getalltask_borad&#91;'admin_id'];\r\n        $checking_taskboad = TaskBoard::where('project_id', $valid_tasktypes)->where('slug_id', $valid_slug_ids)->where('admin_id', $valid_admin_ids)->first();\r\n        if ($checking_taskboad) {\r\n            $response = &#91;\r\n                'success' => true,\r\n                'data' => $checking_taskboad,\r\n                'message' => 'Data Found',\r\n            ];\r\n            Log::info('we are using this project value in website ranking so cannot be delete this vlaue');\r\n        } else {\r\n            $response = &#91;\r\n                'success' => false,\r\n                'data' => $checking_taskboad,\r\n                'message' => 'No data found',\r\n            ];\r\n            Log::info('we didnt get value from project thats why task type will be delete');\r\n        }\r\n        return response()->json($response, 200);\r\n    }\r\n<\/code><\/pre>\n\n\n\n<p>Now all setup has been done now you can get the data.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial i&#8217;m going to get the data from 1 server to another server in Laravel. 1st step Go to first server and make model for&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[25],"tags":[668,3,667],"class_list":["post-1648","post","type-post","status-publish","format-standard","hentry","category-laravel","tag-get-data-from-another-microservice","tag-laravel","tag-laravel-microservices"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to get Data from 1 server to another server in laravel ? - DevOps Freelancer<\/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.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to get Data from 1 server to another server in laravel ? - DevOps Freelancer\" \/>\n<meta property=\"og:description\" content=\"In this tutorial i&#8217;m going to get the data from 1 server to another server in Laravel. 1st step Go to first server and make model for...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Freelancer\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/amitsthakurs\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-12T05:10:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-05T05:15:51+00:00\" \/>\n<meta name=\"author\" content=\"Amit Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/amits_thakurs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amit Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/\"},\"author\":{\"name\":\"Amit Kumar\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"headline\":\"How to get Data from 1 server to another server in laravel ?\",\"datePublished\":\"2024-01-12T05:10:33+00:00\",\"dateModified\":\"2024-02-05T05:15:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/\"},\"wordCount\":101,\"commentCount\":0,\"keywords\":[\"get-data-from-another-microservice\",\"laravel\",\"laravel-microservices\"],\"articleSection\":[\"Laravel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/\",\"name\":\"How to get Data from 1 server to another server in laravel ? - DevOps Freelancer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-01-12T05:10:33+00:00\",\"dateModified\":\"2024-02-05T05:15:51+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/how-to-get-data-from-1-server-to-another-server-in-laravel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to get Data from 1 server to another server in laravel ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\",\"name\":\"DevOps Freelancer\",\"description\":\"We provide DevOps | SRE | DevSecOps | MLOps Freelancing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\",\"name\":\"Amit Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"caption\":\"Amit Kumar\"},\"description\":\"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\\\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/amitsthakurs\\\/\",\"https:\\\/\\\/www.instagram.com\\\/amits_thakurs\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/amits-thakurs\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/amits_thakurs\"],\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/author\\\/amit\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to get Data from 1 server to another server in laravel ? - DevOps Freelancer","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.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/","og_locale":"en_US","og_type":"article","og_title":"How to get Data from 1 server to another server in laravel ? - DevOps Freelancer","og_description":"In this tutorial i&#8217;m going to get the data from 1 server to another server in Laravel. 1st step Go to first server and make model for...","og_url":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/","og_site_name":"DevOps Freelancer","article_author":"https:\/\/www.facebook.com\/amitsthakurs\/","article_published_time":"2024-01-12T05:10:33+00:00","article_modified_time":"2024-02-05T05:15:51+00:00","author":"Amit Kumar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/amits_thakurs","twitter_misc":{"Written by":"Amit Kumar","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/#article","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/"},"author":{"name":"Amit Kumar","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"headline":"How to get Data from 1 server to another server in laravel ?","datePublished":"2024-01-12T05:10:33+00:00","dateModified":"2024-02-05T05:15:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/"},"wordCount":101,"commentCount":0,"keywords":["get-data-from-another-microservice","laravel","laravel-microservices"],"articleSection":["Laravel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/","url":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/","name":"How to get Data from 1 server to another server in laravel ? - DevOps Freelancer","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website"},"datePublished":"2024-01-12T05:10:33+00:00","dateModified":"2024-02-05T05:15:51+00:00","author":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"breadcrumb":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopsfreelancer.com\/blog\/how-to-get-data-from-1-server-to-another-server-in-laravel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopsfreelancer.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to get Data from 1 server to another server in laravel ?"}]},{"@type":"WebSite","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website","url":"https:\/\/www.devopsfreelancer.com\/blog\/","name":"DevOps Freelancer","description":"We provide DevOps | SRE | DevSecOps | MLOps Freelancing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsfreelancer.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b","name":"Amit Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","caption":"Amit Kumar"},"description":"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.","sameAs":["https:\/\/www.facebook.com\/amitsthakurs\/","https:\/\/www.instagram.com\/amits_thakurs\/","https:\/\/www.linkedin.com\/in\/amits-thakurs\/","https:\/\/x.com\/https:\/\/twitter.com\/amits_thakurs"],"url":"https:\/\/www.devopsfreelancer.com\/blog\/author\/amit\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1648","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/comments?post=1648"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1648\/revisions"}],"predecessor-version":[{"id":1649,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1648\/revisions\/1649"}],"wp:attachment":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/media?parent=1648"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/categories?post=1648"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/tags?post=1648"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}