I am having trouble with adding a Product to my Shopify store's shopping cart from an external domain. I have created a product which has a variant id of 264554714. There are other variants, but I have reduced it to one and still cannot get it to work. I have followed all examples in the Shopify forums and on Stackoverflow, but to no avail. My form looks like what is stated to work.
<form id="submitProduct" action="http://mydomain.com/cart/add" method="post" style="display: none;">
<input type="hidden" name="id" value="264554714">
<input type="submit" name="add" value="Add to Cart">
</form>
I have tried many different methods of submitting the form and/or variation combinations. It feels like there is something simple missing. I am hosting this Shopify app on Google App Engine, using Python and Django. I have ensured that the Product exists with the exact variant ID. Please let me know if there is something I haven't thought of to try.
Thank you.