I am using swift 2.1. trying to post image to Flickr
FlickrKit.sharedFlickrKit().uploadImage(UIImage(named: "tumbler_normal.png")!, args: ["photo":data64], completion: { response in print("Successs...Post image Flickr. ....") print(response) //
Getting Error -- 99: User not logged in / Insufficient permissions-->> Write permission Needed
Please Help To solve
You will need to go through the Authorisation/Login process before you can upload images.
I have gone through login.. same error occure error link https://www.flickr.com/groups/api/discuss/72157674609553726/72157673471157251/
That error you get back from Flickr clearly states that you are not authenticated, so you are doing something wrong in the authentication process. You should print out the HTTP headers and BODY so we can see exactly what you are sending to Flickr and see if there are any authentication credentials in your request.
Thank You