I'm new in iOS development. I want to connect my App to Facebook. Implement Facebook Connect on the iPhone
I have followed iPhone FBConnect: Facebook Connect Tutorial and done every steps that described there.
But I couldn't run the App because I have two errors which are Semantic Issues in my xCode 4.3.3, In FBConnectGlobal.h on these lines:
typedef unsigned long long FBUID;
typedef unsigned long long FBID;
The error message is : Redefinition of typedef FBUID and FBID is invalid in C
I appreciate for any help.
Use FBGraph API link as it has demo and it is very easy to integrate and use
I use ShareKit, that is very easy and simple to implement, having many social networks and not only Facebook:
https://github.com/ShareKit/ShareKit
Please follow these instructions to the letter:
https://github.com/ShareKit/ShareKit/wiki/Installing-sharekit
Related
Here i'm working with Google+ integration in IOS Apps..
I have gone through the Guidelines at link https://developers.google.com/+/mobile/ios/share
And I have succeeded in the following aspect.
-->>Sharing Text.
-->>Sharing URLs.
-->>Sharing App(Google+ App) icon and Description [Using deep linking].
But I have stuck in the following aspect.
-->>Sharing an Local or URL Image.
so..is there any possibility to share an image from iPhone app through Google+.
Please help me...
Thanks In Advance...
According to these discussions it is not possible yet:
iOS: Possible to send or post message in Google Plus
you may use -(id) setURLToShare: (NSURL *)urlToShare
https://developers.google.com/+/mobile/ios/api/protocol_g_p_p_share_builder-p#a0f2e350ef29af0eb3ed4771c12e54925
I hope it helps.
I've stuck on this for a while... How do I install the Facebook SDK??
I imported a group called FBConnect that contains 9 header files (that's all I've done), but I find all of these tutorials telling me to create an object like this...
Facebook *facebook;
But I don't have a Facebook class at all... How can I do this in my iPhone app/project? Below is what I really want to do and this is all...
http://stackoverflow.com/questions/6638955/facebook-ios-sdk-get-list-of-friends
If you downloaded the official SDK from this link you should follow this tutorial. It has the Facebook class and all you need to fetch the friends list.
How to use Foursquare API to find nearby places in iOS Applications.
As I am new in this environment.. So please help me to find any sample tutorial available on the API.
I had gone through this link, And I got the response "error type" : deprecated so please provide another link for this same solution..
Thanks in advance..
You can try looking at this link for more information about Objective-C libraries that work with the foursquare API.
Edit: Currently this one appears to be the more recent, more chances of it working properly, also good documentation there on how to integrate it. It is the second one listed in the foursquare library page.
Also check out the foursquare developer site in general, you will need to know the different endpoints and what data they return anyway => https://developer.foursquare.com/
this Link is pretty good,comes with little instruction, u can use the search venues,check in,photo services..heaven!
go through foursquare Api page for desired modification.
in the FSQMasterViewController.m file you need to #define kClientID #"yourClientId"
and #define kCallbackURL #"ur callback url"
fix your infoPlist the urlSchemes too
I am using MGTwitterEngine in my iPhone application.
It is working great of for every other functionality than search user.
I have tried to integrate search functionality of twitter i.e. GET users/search | dev.twitter.com.
but didnt get any success.
i have also tried by changing path of TWITTER_DOMAIN to #"api.twitter.com/1"
but no success.
i am getting Response code 403.
Can some one please please guide me solve this Search user functionality?
Regards,
Sanket
You can login with twitter. This doc explain step by stepsTwitter Login
Does Twitter has the iPhone SDK which has a login popup like facebook iOS SDK?
It doesn't have. What I can recommend you is to use this DDSocialDialog library (just 4 classes) and you can have something similar
Look for this source code:
http://github.com/bengottlieb/Twitter-OAuth-iPhone
Thanks to Ben Gottlieb.
It opens the login page as a modal view.
Wrap the page in this:
https://github.com/cglong/FBDialog
No, it doesn't. You'll have to implement your own.
Sorry, they don't. But, as facebook, their REST API can return JSON payload and that's very easy to retrieve using NSURLConnection and parse using the JSON-Framework that you van find here
No Twitter does not have the login pop up as facebook has. You have to create your own login page. or you can get few from the open source.
Matt Gemmell and Craig Hockenberry, developer of Twitterific created MGTwitterEngine, an easy-to-use library of classes providing methods that make it extremely easy for the developer to access the Twitter API. see I believe there are a few other libs out there, but it's just as easy to roll your own because like Macha says above Twitter's API gives you the option to have the feeds in XML or JSON format.
Try this link
MGTwitterEngine
hAPPY cODING...