Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

say I have this call in my code:

products = shopify.Product.find()
which works if I am just logged in, but after some time it starts failing with an error saying 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:

self.session['shopify'] = {
    'shop_url': shopify_session.url,
    'access_token': shopify_session.token
    }
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?

share|improve this question
The access token used in the X-Shopify-Access-Token header 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
@Dylan, thanks for your response. it was a bug in my code. i was not setting up and activating shopify session correctly. so shopify.Product was returning None. it would be helpful if instead of NoneType error there were more informative message, but I suppose it comes from pyactiveresource, not your adapter. thanks. – akonsu Sep 8 '12 at 1:59
You should consider posting and accepting the actual solution. – John Duff Sep 9 '12 at 12:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.