MySpace Open Platform

A Place For Developers

Welcome Developers!

in

Welcome!

in

Read me first -- Common Questions & Announcements

Last post 11-12-2008 3:11 PM by Justin. 27 replies.
Page 2 of 2 (28 items) < Previous 1 2
Sort Posts: Previous Next
  • 03-01-2008 7:36 AM In reply to

    • Raviv
    • Top 500 Contributor
    • Joined on 02-05-2008
    • Posts 20

    Not getting any OAuth params in requests to my server

    Any news about this issue ?

  • 03-01-2008 7:45 AM In reply to

    • Raviv
    • Top 500 Contributor
    • Joined on 02-05-2008
    • Posts 20

    Re: Read me first -- Common Questions

    Any news about this issue?

  • 03-11-2008 5:33 PM In reply to

    Re: Read me first -- Common Questions

    Updated to reflect 0.7 support, app data up and running, new gadgets calls for requestNavigateTo and adjustHeight.

  • 03-11-2008 11:10 PM In reply to

    Re: Read me first -- Common Questions

    What about REST api doc for data? 

  • 03-12-2008 1:11 PM In reply to

    • Egg
    • Top 50 Contributor
    • Joined on 02-05-2008
    • Posts 73

    Re: Read me first -- Common Questions

    Q: Great! So I do the same thing to get extra data on viewer and owner friends right?
    A: No, sorry, we don’t support that at this time.

    Is this going to be supported in the future? It'd be nice if we could match up folks based on their sex.

    param[opensocial.DataRequest.PeopleRequestFields.PROFILE_DETAILS] = opensocial.Person.Field.GENDER;
  • 03-17-2008 11:29 AM In reply to

    Re: Read me first -- Common Questions

     Updated: you can now filter a photos request by album ID.

  • 03-17-2008 12:16 PM In reply to

    Re: Read me first -- Common Questions

    Egg:
    Is this going to be supported in the future? It'd be nice if we could match up folks based on their sex.

    param[opensocial.DataRequest.PeopleRequestFields.PROFILE_DETAILS] = opensocial.Person.Field.GENDER;

     

     

    Hey, this is a left-over bug from the 0.6->0.7 migration.  GENDER is located inside our namespace right now, you can access it that way.  We'll move it into the opensocial namespace shortly.

    MyOpenSpace.Person.Field.GENDER

  • 03-25-2008 1:27 AM In reply to

    • Mitza
    • Top 500 Contributor
    • Joined on 02-06-2008
    • Posts 15

    Re: Read me first -- Common Questions

     and now the only way to get a photo is by sending the album id in the request?

  • 03-25-2008 5:37 AM In reply to

    Re: Read me first -- Common Questions

    No, you can still get photos with newFetchPhotosRequest -- I put the details here: http://developer.myspace.com/Community/forums/t/1317.aspx

  • 04-29-2008 4:28 PM In reply to

    Re: Read me first -- Common Questions & Announcements


  • 05-29-2008 1:07 AM In reply to

    Re: Read me first -- Common Questions

     On 2/14/08, the Common Usage section of the FAQ contained:
    Q: Great!  So I do the same thing to get extra data on viewer and owner friends right?
    A: No, sorry, we don’t support that at this time.

    Is this supported now? I can get gender, age, country, and region for owner by using profile_details for newFetchPersonRequest. According to OpenSocial, I should be able to use profile_details for newFetchPeopleRequest to get these items for owner_friends. This isn't working for me. As mentioned in the 3/17/08 post above, I am using myopenspace for gender rather than using opensocial. How do I get gender, age, country, and region for owner_friends?

  • 06-03-2008 7:47 PM In reply to

    Re: Read me first -- Common Questions

     Hi Happiness, sorry, you still can't get that info for owner/viewer friends.

  • 11-12-2008 3:11 PM In reply to

    Re: Read me first -- Common Questions

    Hi

    Just checking.   Is it possible now?

    I am looking to get my friends' zipcode for a simple app.  Is there any way to do this on the client side at the moment? 

    Here is the code which I was expecting to work.

    var param = {};
    param[opensocial.DataRequest.PeopleRequestFields.PROFILE_DETAILS] =
            [
    MyOpenSpace.Person.Field.COUNTRY,   MyOpenSpace.Person.Field.POSTALCODE];
    var req = opensocial.newDataRequest();
    req.add(req.newFetchPeopleRequest(opensocial.DataRequest.Group.VIEWER_FRIENDS, param), 'viewerFriends');
    req.send(populate);

    function populate(data) {
       var viewerFriends = data.get('viewerFriends').getData();
       var html = new Array();
       viewerFriends.each(function(person) {
           html.push(<div> + person.getDisplayName() +
               ' lives in ' + person.getField(MyOpenSpace.Person.Field.POSTALCODE) + </div>);
       });
       alert(html.join('');
    }


     

     

Page 2 of 2 (28 items) < Previous 1 2