No content to show
User Activity
08-17-2022
Yes I was missing the access token key in header section. Recently Shopify has added token based authentication method. My code works perfect now. Here is my code for those who may be in the same situation restSharpRequest.AddHeader("content-type", "...
08-13-2022
Hi,I have created a custom app to integrate Shopify with POS database locally..It is complete functional app where Login , Upload of Products download of Orders etc. was working.Today, when I try to run the app I am getting login error with API crede...
So I figured it out with trial and error. Json format was wrong. You need to add all values in double quotesOf course you also have to make sure your private app has Read/Write rights for Product ..in Private App settings. WITH IMAGE body = @"{ ""pro...
Hi,I am trying to make a request to add a product using RestSharp and I am getting error Badrequest"{\"errors\":{\"product\":\"Required parameter missing or invalid\"}}"I have set Admin API permission [Read/Write] for Products on store settings also ...
12-29-2021
I have made some changes to POST a new product. I am getting errorBadrequest product\":\"Required parameter missing or invalid\"}} var client = new RestClient("https://bmswave.myshopify.com/");//This is the storeclient.Authenticator = new HttpBasicA...
12-28-2021
I am also attaching tokens if required to verify on your side. {X-Shopify-Generated-Cart-Token=69a6c6c4db4ede401f44c48a0c2bb5b6}{X-Request-ID=cb475c68-e20c-4823-b084-de8f95ac96b3}
Hi ,I am making this POST call using RestClient and I am getting this error.."StatusCode: Unauthorized, Content-Type: text/html, Content-Length: -1)"Admin REST API ErrorGET method works fine and returns the data so the username and password are corre...
Hi,I pasted the link below with API key and Secret key in Incognito mode and I was able to see the products json reply.https://xx:key@bmswave.myshopify.com/admin/api/2021-07/products.jsonHow do I access API Admin screen where I see Api key and passwo...
Hi ,I changed the order of key and PWD just to confirm but no luck. When you say permissions error, do I need to set any permissions in the store? like ADMIN API PERMISSIONSI cannot find any link to do it.Also in my partner login, I created an app, w...
Hi,I changed my code a bit and request and response code var client = new RestClient("https://bmswave.myshopify.com");client.Authenticator = new HttpBasicAuthenticator("**", "**");string resource = "/admin/api/2021-07/products.json";var requestres =...
Hi,I am creating a app to upload new products using API using JSON/C#. I am using RestSharp and NewtonSoft.JsonI have a partner login through which I have created a APP bmswave.myshopify.comand generated key/password etc.The store bmswave.myshopify.c...