storj-thirdparty / uplink-python

Python bindings for libuplink
https://storj.io
Apache License 2.0
21 stars 10 forks source link

What are API keys? #18

Closed pickaxe828 closed 3 years ago

pickaxe828 commented 3 years ago

What are API keys? Where can I find them in my bucket/ account?

Erikvv commented 3 years ago

They are no longer visible in the GUI. API key is part of the serialized access grant. Serialized access can do everything an API key can.

access = uplink.parse_access("1JRC...")

If you really want to extract the API key you can do it with uplink-cli:

uplink access inspect 1JdRC...
pickaxe828 commented 3 years ago

Oh thank you for the solution It works now :>