Skip to content

Instantly share code, notes, and snippets.

View Jeeva-Rathinam's full-sized avatar

Jeeva Rathinam Jeeva-Rathinam

View GitHub Profile
@Jeeva-Rathinam
Jeeva-Rathinam / m2api.php
Created October 22, 2020 10:16
magento 2.3 - Import Product Using Rest API
<?php
$url = "https://test.com/rest";
$token_url= $url."/V1/integration/admin/token";
$username= "test";
$password= "@test";
//Authentication REST API magento 2,
$ch = curl_init();
$data = array("username" => $username, "password" => $password);