-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
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
OAuth Error Message #133
Comments
I have the same error! |
Is this related to Flickr changing the oauth callback url from http to https? I don't use FlickrApi's authenticate_via_browser myself, but I've had problems with the local server I use. Flickr introduced the bug over a year ago though, so if this is new it won't be that. :) |
I'm looking into it. In the meantime I'm curious if you could be experiencing any encoding issues in your project. Maybe due to an IDE or wherever you're getting the authentication info from. |
Also of interest would be if your code was ported or using parts of Python 2 instead of Python 3. In Python 3 strings should be in Unicode (UTF-8) by default. |
My plan is to remove the usage of the six library based assert. Then use the Python 3 built-ins or the Unicode library to make sure it's Unicode. I suspect this is just a silly issue with the isinstance and six library. In general I intend to remove whatever remains of Python 2 compatibility over time. |
Thanks a lot! The IDE I am using is the Python 3 IDE on a Mac. I have tried Chome and Safari as browser. |
Sorry for the delay. In addition to being very busy during the summer months my development machine decided to break on me. I'm curious are you running this as part of a subprocess or using an IDE button or toolchain to run? You might try setting |
@randomcascade, SInce I'm using UTF-8, I did the following: Edited .profile and added the lines below:
Then, I reran the same script and got the same error:
|
Hello
I try to get my authentification with this code here:
For some reason, that i can't understand, the IDE gives me this error message:
and the flickr page gives me this error message:
_Oops! Flickr doesn't recognise the "oauth_token" this application is trying to use.
An external application has requested your login credentials and permission to perform certain actions on your behalf, but has failed to include all the required data.
You don't really need to know what this means, except that you can't use the application until this problem is fixed. (It's a third-party problem, not a Flickr problem.)
There are lots of applications using the Flickr API. If you are curious about this, visit the Flickr Services page to see more examples of cool stuff. Otherwise, you might like to head to your home page..._
Could you kindly point me into the right direction? That would be great!
The text was updated successfully, but these errors were encountered: