hankmoody801
hankmoody801
I'm getting the same error as @adamlwgriffiths . I'm also running python 2.7 so I don't think that @Talv comment applies to me. Has anyone found a solution?
I can get it to work on my local machine but it won't run on my server. I get the error: AttributeError: 'API' object has no attribute 'product' On my...
SOLUTION: catalog.py, checkout.py, customer.py, and directory.py are inside the magento directory so edit each of these files like so... Change: `from magento.api import API` To: `from .api import API` Everything...
How do I connect to Magento 2 using rest api?