We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I already have access token generated from other python script. How do I use that ?
Is thare a way to create "auth.txt" manually and then pass it to handler ? I just don't know the format of auth.txt file.
flickr.set_keys(api_key="YOUR_API_KEY", api_secret="YOUR_SECRET_KEY") flickr.set_auth_handler(".auth.txt") # or whatever you save your auth file as
The text was updated successfully, but these errors were encountered:
I've honestly not looked at the authentication code for quite a while, but the wiki has this information: https://github.com/alexis-mignon/python-flickr-api/wiki/Flickr-API-Keys-and-Authentication
Sorry, something went wrong.
Yes. I want to know what usually stores in auth.txt file ? Is it access token ?
I just don't want to go through authentication process just to retrieve a new token.
ah, I didn't read your question properly. The format is a file with two lines. The first is the token key and second is the token secret
token_key tokey_secret
No branches or pull requests
I already have access token generated from other python script. How do I use that ?
Is thare a way to create "auth.txt" manually and then pass it to handler ? I just don't know the format of auth.txt file.
The text was updated successfully, but these errors were encountered: