I am Getting error while accesing flipkart marketplace api Can someone please guide me where i am doing wrong.
using (HttpClient httpClient = new HttpClient())
{
HttpContent content = new FormUrlEncodedContent(new[]
{
new KeyValuePair("appid:app-secret", "appID:appSecret"),
});
content.Headers.Clear();
content.Headers.Add("Content-Type", "application/octet-stream");
HttpResponseMessage response = httpClient.PostAsync("https://api.flipkart.net/oauth-service/oauth/token?grant_type=client_credentials&scope=Seller_Api", content).Result;
}
And how to access flipkart curl in c#
Bhuvanesh MohankumarPosted Oct 11, 2018, 8:40 AM
vishal singhPosted Oct 2, 2018, 11:43 PM
Bhuvanesh MohankumarPosted Oct 2, 2018, 3:17 PM