Home > OS >  how can i add a functionality ( with the framework .net ) in shopify?
how can i add a functionality ( with the framework .net ) in shopify?

Time:02-24

i has created eshop in shopify and i want to add a functionality ( with the framework .net ) in shopify but i don't know how.... I searched on the internet but I didn't find anything just I found this link from the ShopifySharp github but I didn't understand how to use it who can help me https://github.com/nozzlegear/ShopifySharp#:~:text=Answer: ShopifySharp works with any,PRIVATE APP PASSWORD HERE") .

CodePudding user response:

There are several possible ways to add functionalities to a Shopify shop depending on what you want to do.

They range from editing your shop's theme (mostly for simple needs) using html and/or js and/or and/or css and/or the liquid templating language (be careful though that any theme update may override your edits), to developing and hosting a custom app that would interact with your shop via a set of APIs (for more complex needs). Both techniques require a certain level of expertise (especially the later). See this very complete blog article for more info about how to build a Shopify app.

Basically you can build an app using any language and framework. The repo you found on Github looks like a C# SDK implementation of Shopify API. You are free to structure your app as you want provided you authenticate and communicate with Shopify using the possibilities offered by the API.

CodePudding user response:

this tutorial " blog article " contains development with react and node I want to add a functionality or an API using the dotnet framework (.net) but I don't know , how can i connect them ?

  • Related