I want to use OAuth (documentation from http://fdp.frogcommunity.com/questions/view/171/introducing-oauth) in my app, any ideas/online tutorials listing how to do it using the code listed in the link above?
Thanks!
I've been using this
OAuthConsumer Implementation for Objective-C
It's been working great so far
Related
Is it possible to use the Facebook SDK 3.0 with iPhone storyboard? I can't find any tutorials using storyboard. If it is possible, do you have any tutorials?
There is a sample application that you can go through that shows you how to use storyboards. This uses the Facebook SDK 3.1.
https://github.com/fbsamples/ios-social-cafe
It shows logging in with Facebook, publishing using Open Graph, the friend and place picker, and also deep linking.
had the same problem, me and another dev figured it out ourselves and built a dumb simple solution:
https://github.com/kincade71/Face-Code-X
How to connect to the Twitter API using Xcode?
If by using XCODE you mean using Objective-C, then you can use this Twitter API: MGTwitterEngine.
You can also use any other C/C++ library for Twitter, or write your own (it's not that hard if you only want the basic stuff).
hello hope this can help you
http://mobile.tutsplus.com/tutorials/iphone/iphone-json-twitter-api/
Matt Gemmell's MGTwitterEngine is the way to go. Simply import and use. There's a little more work to do if you need to authenticate via OAuth
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];
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.
Is there any wrapper available for Twitter in X-Code? if not then do I have to call original Twitter API in my Iphone's application?
Why not give http://mattgemmell.com/2008/02/22/mgtwitterengine-twitter-from-cocoa a go, it works with the iPhone and has been recommended by quite a few people.
You can try MGTwitterEngine.
I am just starting to look at it myself.