How to integrate Google+ API in iPhone? - iphone

Is there Google API for iPhone out yet?
And if YES, how can i integrate within my application.
Thanks in advance.

This was already answered on SO, see Is there already a Google+ API?.
Basically, go to http://developers.google.com/+/

Use this command to anonymously check out the latest Google SDK project source code for Objective C:
svn checkout http://google-api-objectivec-client.googlecode.com/svn/trunk/

The Google APIs Client Library for Objective-C includes support for the Google Plus API and other JSON APIs. The project includes an introduction to using the library.

Related

Basecamp API integration in ios

I need to implement Basecamp API for iphone app. I searched on google and got a Git hub link: https://github.com/37signals/bcx-api
It say that the API is rest based but I am not able to understand how to call this api. I also not able to figure out how to get Login using this API. This api contains .md files.
Please any one can help me how to call this API in iOS sdk?
Thanks
See that - https://github.com/ScottPetit/BasecampKit. I didn't try it but it's only one realization where you're not obliged to mess directly with basecamp api.
Some time ago I started to do some bascamp integration in my app but don't found any sinple solution
and decided to make own basecamp ios sdk. I'll share it on github when it will be done.

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

Deviant Art API or SDK for iPhone?

Do you have any idea if there is available an official DeviantArt API or SDK for iPhone?
I am building an application and I would like to integrate a search through Deviant Art public feed.
Is this possible?
There is no official API or SDK for the iPhone. From reviewing their forums, it has been suggested many times, but so far has not been provided.
There's something called DiFi: http://www.botdom.com/documentation/DiFi that may be worth a try.
If that doesn't work, you could try interacting with the web site using a hidden UIWebView by using the – stringByEvaluatingJavaScriptFromString: method. I've used this in the past to interact with web sites that do not provide an API.
That's a wonderful idea, Andrei, but I don't think deviantart has any APIs available. However, what you want to do might not be impossible, you would just need to build your app to work with deviantart's website.

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];

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.