Categories
Rest

Building a Proper REST API with authentication

Authentication First thing we need to be clear about is your method of authentication means nothing if you are not using https. If you are not using https then your users credentials can be snooped. What is REST? TL;DR Cheat sheet Representation State Transfer Resource based we are talking about thing(nouns) instead of actions(verbs) resource is […]

Categories
Rest

Headers sent but not received by Application, Shopify and Restful API’s

I was tasked with creating a service (app) that would interact with the ShopifyAPI. To create the service the flow would be: Authenticate (Oauth) Register the Service with callback url Return relevant data when Shopify makes the external call (webhook) This is the first time I had worked with Oauth and a Restful API. What […]