flickr-net
flickr-net copied to clipboard
Getting not authorized when trying to get access token
I am trying to generate access token using the below code
FlickrNet.Flickr f = new FlickrNet.Flickr(); f.ApiKey = "myappkey"; f.ApiSecret = "sharedsecret for app"; OAuthRequestToken token = f.OAuthGetRequestToken("test"); var accesstoken = f.OAuthGetAccessToken(token, "authorization code generated after authorization");
Am I missing something?
Tried the same values in the tests, still the same. Should I have to authorize anything else>
@samjudson do we have any update for this ?
"test" is not a valid option for the callback url. It should either be a real url, or "oob".
What error are you receiving?