views:

153

answers:

2

how can we integrate myspace in my website.i want to bind friendslist and daily updates to my website?

A: 

Check out the APIs at http://developer.myspace.com/

Tim Yates
+1  A: 

You have a few options to integrate the MySpace social network with your site.

From the developer site (http:\developer.myspace.com), create a MySpaceID application. With the application you still have a few options:

  1. Use the javascript library that comes with the MySpaceID library
  2. Use the OAuth REST calls to exchange a request token for an access token and call the REST endpoints from your server. (so this is a server to server implementation)
  3. Use the OpenId hybrid integration.

Your best bet is number 2

This page http://wiki.developer.myspace.com/index.php?title=OAuth_REST_API_Usage_-_Authentication_Process will give you the best overview of the authentication flow.

I always create a simple console application and trace with Fiddler the request response sessions.

Sentient