Using the Twitter API within iPhone application - iphone

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.

Related

How to integrate Salesforce in iphone app?

can any one help me in integrating salesforce in my app.I have made account in sales force and also created the remote-acces key.Can anyone tell how to ad objects ,dashboards etc in the iPhone app.I also want to know how to access the data on salesforce .for e.g. i want to get all the custom objects in salesforce and also want to create custom objects from iPhone app.Can anyone guide me in this respect.Any help is appreciated.
There are many ways to do it. I advice you to read carefully and choose the best way to do it.
Here are some links to read about it:
Making Salesforce and PayPal Work Together
SDK Project
Good Documentation and code
Salesforce provides mobiles SDK for iPhone, Android & hybrid platforms.
This SDK has samples on how to start with. There are lot of documentations available.
Basically the SDK helps to authenticate with Salesforce using oAuth, communicating with the objects using RestKit.
Refer the following URLs to start with..
Download the mobile SDK from the following URL.
https://github.com/forcedotcom/SalesforceMobileSDK-iOS
There is a discussion forum
http://boards.developerforce.com/t5/Mobile/bd-p/mobile
API docs
http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/index.html
Ref:
http://wiki.developerforce.com/page/Mobile_SDK

Getting Started With Twitter for iOS

For quite a while now, I've been trying to find a good way to simply post updates/photos to a user's twitter account via my iOS app. I've looked at ShareKit, but I really need to be able to design my own UI. Also, I've taken a look at MGTwitterEngine, but am unsure as how to implement it. Is there a "right" way to go about posting updates to Twitter with a custom UI on iOS?
Any help would be greatly appreciated. Thanks.
Given Apple's TWTweetRequest object, calls made to the Twitter service can now be orchestrated right through iOS without the need for an external framework or engine. Just look at the Twitter developer docs and make the calls you need, specifying the correct information in a dictionary for the process to complete successfully.

how to integrate YELP API with iphone?

I am implementing one iphone application in which I want to use yelp api.But I dont know how to integrate with iphone.I have found one sample code from the GIT hub but there are not specific code.Can you give me some advice or some reference.
Please give me solution for this query
Thanks in advance
You should take a look at RestKit http://restkit.org/
It's a great tool for connecting with API's like this. Once you get that working it should be as simple as connecting and making some calls.

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.

How can I integrate LinkedIn within an iPhone application?

I need your help to know regarding integrating linkedin with my iPhone Application.
I do Googling and am able to create an API for LinkedIn. Using link.
But since I am newbie, I stop here. I have both API Key and Secret Key, But I don't know how do I use it to make it Successful in iPhone Application.
So it's my request to you all to suggest me proper way. Maybe I will learn something new from you.
For other folks looking for sample iPhone applications for LinkedIn, I wrote a sample client which is on GitHub (which was presented at the Silicon Valley iOS Meetup last year):
https://github.com/synedra/LinkedIn-OAuth-Sample-Client
Please try LIExplorer for iOS. It seems to be a promising library which provides LinkedIn authentication and API calls. It also manages token caching.
https://github.com/vijayviswas/LIExplorer
Download a library from : https://github.com/NasirMalik/LinkedIn-iOS-Status
In this library .c file is also used that's why use compile source as: Objective-C (in build settings) instead of file type.
Write this code in your click event:
profileTabView=[[ProfileTabView alloc] init];
profileTabView.parentVC=self;
profileTabView.view.frame=CGRectMake(0, 0, profileTabView.view.frame.size.width, profileTabView.view.frame.size.height);
[self.view addSubview:profileTabView.view];