skip to Main Content

I have searched for tons of threads here in Stack Overflow but I can’t seem to find the fitting or direct answers.

So we would like to fetch products from API of external (outside Shopify) source then upload them to Shopify. Is there a way to do this without creating an app? This external source API provides already data in Shopify format.

Thanks!

2

Answers


  1. In the Shopify store you wish to add these products to, you can create an access token with permission to create products. Using that token, you are free to make API calls to the Shopify store, with the data representing products, to create products in the Shopify store. Very simple pattern. Takes about 30 seconds of your time to create the access token in the Shopify store admin.

    Login or Signup to reply.
  2. No you have to create APP for it.

    As per latest updates from Shopify, you need to create "Custom App" atleast to get the Access Tokens and API keys, because Shopify has depreciated "Private apps" They work like Private apps, as those apps are specific to only one store, but these apps can give you all the needed permission to Create and Fetch Products.

    You can create new apps from admin panel here: [YourStoreDomain]/admin/settings/apps/development

    Documentations realated to it is: https://help.shopify.com/en/manual/apps/custom-apps

    From Shopify: https://help.shopify.com/en/manual/apps/private-apps
    Note Private apps are deprecated and can’t be created as of January
    2022. Ask your app developer to create a custom app. Like private apps, custom apps are built exclusively for your shop, but they don’t
    require open API access to your store or access to your Shopify admin.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search