使用Python API创建产品时未收到Shopify的响应

时间:2012-12-22 05:58:35

标签: python django api google-app-engine shopify

我正在使用Python API创建一个包含5个变体的产品。我成功地在商店中创建了产品,没有问题。我遇到的问题是产品创建后,我没有收到Shopify的回复。因此,我从服务器中的API收到HttpException。

我可以解决这个问题,但我需要能够创建产品并使用新创建的产品的Variant ID填充表单。我通过Ajax调用尝试启动对Shopify的服务器调用,但我也尝试了对服务器的同步请求,我仍然没有收到Shopify的响应。

产品详情如下:

custom_product = shopify.Product()
custom_product.product_type = 'Custom Shirt'
custom_product.body_html = '<strong>Custom Shirt</strong>'
custom_product.title = 'Custom Shirt'
variant1 = shopify.Variant(dict(price=0, option1='Small'))
variant2 = shopify.Variant(dict(price=0, option1='Medium'))
variant3 = shopify.Variant(dict(price=0, option1='Large'))
variant4 = shopify.Variant(dict(price=0, option1='Extra Large'))
variant5 = shopify.Variant(dict(price=0, option1='2XL'))
variant6 = shopify.Variant(dict(price=price, option1='Bundle'))
custom_product.variants = [variant1,variant2,variant3,variant4,variant5, variant6]
# create images for front and back
front_image = shopify.Image(attributes=dict(shot='front'))
front_id = front_shirt_model.key().id()
front_image.src = 'http://myurl.com/img/'+str(front_id)
back_image = shopify.Image(attributes=dict(shot='back'))
back_id = back_shirt_model.key().id()
back_image.src = 'http://myurl.com/img/'+str(back_id)
custom_product.images = [front_image, back_image]

success = custom_product.save()

我还应该提一下,我在Google App Engine上使用Django。我尝试了不同的替代方案,例如使用请求Python库来创建请求JSON对象和连接等。如果有什么我忽略了,请告诉我。预先感谢您的任何帮助。

1 个答案:

答案 0 :(得分:0)

看起来这是因为谷歌应用引擎强加了一个http超时,python通常默认没有。

How to set timeout for urlfetch in Google App Engine?说明如何将默认超时设置为最多60秒。