How to integrate the Flickr Api in ios - iphone

I want to integrate the flickr api to upload the image through my iphone application to flickr site.
I had downloaded the code snap&Runfrom github. i had integrated the same code in my code.But it is showing me the error while navigating back to the application from safari browser.
The error is :-Cannot open page
Safari cannot open the page because the address is invalid.
Please help me.

please refer this link https://github.com/lukhnos/objectiveflickr of the well known ObjectiveFlickr repository. I think it's much lighter and simpler:
it relies on AFNetworking, which is the industry standard
it has only 4 classes and a good tutorial
the coding style is more modern

https://github.com/lukhnos/objectiveflickr
this will help you !!

Related

Upload image from IPhone in asp.net

I don't know anything about Objective C. I am developing a website in asp.net for
mobile version. And in this application I need to upload an image from mobile.
But uploading from iPhone not working. After searching I found this link
Post image and text from iPhone to asp.net
Where a xcode is used.
The problem is that I don't know how to use this code in my application. I can understand
handler used for uploading but not Objective C code. And can any one help me how to
use this code on IIS server.
Thanks in advance.
I have quite an old blog about posting files to asp.net site from iOS. You can check it out at -
http://mahmudulislam.me/2011/09/14/uploading-files-from-iphone-to-asp-net-web-site/
This might help you.

Google Plus sharing, like button from ios

I am new to iPhone apps development, I want share and like button on google plus for my application, searched in web, but i got many links were pointing to developer.google.com etc. from there i downloaded SDK, but am not able to write code for that.
Please give some example code.
Thanks in advance.
there is a post here, which describes what you plan to do...
How can I integrate Google Plus with iPhone sdk?

EverNote Api for iphone

Hi I am using Evernote Api for iphone. I downloaded Api from developers site of evernote. But I dont know how to use it...Any one know about this or have any links or examples to understand this?
Adding iOS sample code is a top priority. In the meantime, please have a look at http://digitalpericope.net/?p=27, which might help you get started.

Using Facebook Connect SDK for my iPhone app

Okay, I am using Cocos2d for developing an Iphone game, and I wish to implement Facebook Connect.
I found a tutorial about integrating Facebook Connect in the Cocos2d forums (http://www.cocos2d-iphone.org/forum/topic/3392), but the link it provides for downloading the Facebook SDK is... broken. And I have no idea where to actually download it! Every link I find in Google seems to have been removed from Facebook's documentation. And that tutorial is a bit old... is there any updated content about such? Can someone guide me as to where should I get started? (downloading the SDK)
Facebook seems to be notoriously bad for dropping support or unlinking features. Try:
http://developers.facebook.com/docs/guides/mobile/#ios

Using the Twitter API within iPhone application

I want to integrate Twitter API into my iphone application. I have read about JSON framework with iPhone SDK 2.2. But I am new to this type of application. Can anybody please explain how to integrate this Twitter's APIs with my application and how to use it. Also tell me how to open "svn checkout http://json-framework.googlecode.com/svn/trunk/ json-framework-read-only" I have downloaded this code, but I'm not sure where to go from here. Please help me in this issue. Thanks in advance.
Try MGTwitterEngine.
You might consider looking at the Stanford iPhone programming course for some basic "how to use an API" type information.
Their in-class sample app is a low-end Twitter app that uses the JSON library, you might find that a useful example.