Hello,
I was trying to use the developer token to access BOX via Python (v 3.6):
from boxsdk import DevelopmentClient
client = DevelopmentClient()
Enter developer token: ...
user = client.user().get()
I get the following error:
requests.exceptions.SSLError: HTTPSConnectionPool(host='api.box.com', port=443): Max retries exceeded with url: /2.0/users/me (Caused by SSLError(SSLError(1, '1SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)'),))
I tried to copy and paste the BOX cert into ...\Python-3.6.1\Lib\site-packages\certifi\cacert.pem but no luck.
Any help would be appreciated!