Posts Tagged iPad

Sharing Your Social Devices

16 Nov 2010

While apps and websites may connect us socially, we rarely make the devices themselves a social experience. My phone is a very personal tool. It holds my emails, access to my Twitter and Facebook accounts (which, for me, have some business purpose), contact information for hundreds of people, and really neat pictures from Hipstamatic. While I don’t mind people making phone calls, I’d never be willing to share it. The same goes for my computer.
An iPad is a different story. I remember reading a post by Fred Wilson, who was revisiting his negative opinion on his iPad. He noted that the “iPad makes using a computer less of a commitment” and goes on to explain how, in addition to easily moving in and out of interaction with the device, his whole family share use together, as well as each having their own personal use. Some data from Nielsen supports his…

...Continue Reading

iPhone, Facebook, oAuth 2.0 and the Graph API. A Tutorial, Part 2.

29 Jun 2010

NOTE: I’ve moved the source code for this project to Git Hub, please get it here:  http://github.com/reallylongaddress/iPhone-Facebook-Graph-API
Preface
In part 1 of this tutorial we walked through obtaining an oAuth 2.0 access token from Facebook via an iPhone (or any iTouch device).  If you wish to go back and review the oAuth 2.0 process in some detail HERE.
In the second part of this tutorial I’ll show you how to leverage my pseudo-API to:

Login to Facebook using oAuth 2.0
Request extended permissions for your mobile application (photos, videos, publish stream and offline access)
Get your profile data
Get your friend list
Get your feed
Post to your feed
Post a photo (via a local image (UIImage) not a url)
Get metadata
Delete a feed post (via a Post)
Get search results
Get (and display) the author’s avatar

Convention
There are 2 APIs being talked about in this tutorial. To avoid confusion, I’m going to refer to them consistently as Facebook’s  ‘Graph API’ and my…

...Continue Reading