say I have this call in my code:
which works if I am just logged in, but after some time it starts failing with an error saying
products = shopify.Product.find()
AttributeError: 'NoneType' object has no attribute 'find'. I think this happens because the session expires and my code does not check that.
is there a way to check if shopify session has expired? I store the store URL and the authentication token in my webapp2 session thus:
are there any other properties that I need to store in my web session that I can use to check if the shopify session has expired?
self.session['shopify'] = {
'shop_url': shopify_session.url,
'access_token': shopify_session.token
}
X-Shopify-Access-Tokenheader shouldn't expire. Are you using the shopify_python_api library? What is returning None, or where does the error occur if in a library? Because presumably shopify.Product isn't None. – Dylan Smith Sep 7 '12 at 21:58