Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Posting Twitter and Facebook updates from a jQTouch / Phonegap iPhone app

I'm using jQTouch and Phonegap to write a simple iPhone app which i'm planning to release through the App Store.

Part of the planned functionality will let the user update their twitter or facebook status with the output of the App (some text, possibly a link).

Before I go ahead and start rolling my own solution, are there any JS libraries or plugins (or anything else) out there which will make this a lot simpler? Ive tried a few Google searches which havent turned up anything. The thought of all the authentication / error handling code is a bit daunting.

Thanks,

James.

like image 507
James Avatar asked Jun 11 '10 09:06

James


2 Answers

I endup implementing facebook and twitter login using the ChildBrowser plugin to authenticate as a mobile web site.

If this interesting for someone I could write a blog post about it.

http://github.com/purplecabbage/PhoneGap-Plugins/tree/master/ChildBrowser/

Update: I just made the blog post: http://www.pushittolive.com/post/1239874936/facebook-login-on-iphone-phonegap

Hope it make sense, it explains how to login with facebook. I could make one about twitter login if someone is interested, but is basically the same.

Cheers, Sebastian

like image 167
sebastian serrano Avatar answered Oct 21 '22 08:10

sebastian serrano


I have been trying to todo the same thing, the only methods FB provides API's for is native code, or a mobile web site. There is no in between (PhoneGap). I't appears its not possible besides writing a PhoneGap plugin for Twitter and Facebook (which is moderately difficult) or standing up a web site for your application and forwarding requests from there.

I myself decided to write a PhoneGap plugin using Facebook and Twitter's sample iPhone code.

like image 1
Josiah Hester Avatar answered Oct 21 '22 07:10

Josiah Hester