App reviews, troubleshooting, and recommendations
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Have had an app working for over 6 months scraping data from websites and updating inventory on Shopify via graphql + google cloud platform. Overnight all of my functions are broken and won't connect to Shopify from the cloud anymore. I can run the exact same code from a local environment without any issues. Why am I unable to connect to Shopify anymore?
Why would this break overnight?
Why can I run from local machine with the exact same code but not on Google Cloud Platform?
try:
session = shopify.Session(SHOP_URL, API_VERSION, PASSWORD)
shopify.ShopifyResource.activate_session(session)
except:
print("error connecting shopify")
{"errors":"[API] Invalid API key or access token (unrecognized login or wrong password)"}
I seem to be running into a similar problem. Please let me know if you found a fix for the problem or not.