Sweet, that would be awesome. I guess I can work on other things till
then.

Thanks Arne :)

On Jan 30, 10:01 am, Arne Roomann-Kurrik <api.kur...@google.com>
wrote:
> Soon, like within a week soon (hopefully!)
>
> ~Arne
>
> On Jan 29, 5:29 pm, SocialMatrix <thekdis...@gmail.com> wrote:
>
> > Thanks Arne,
>
> > I guess I'll just wait till that feature come out on PHP client
> > library. and work on other things till then.
>
> > Would you happen to know how long it might take?
>
> > Thank You,
>
> > On Jan 29, 11:47 am, Arne Roomann-Kurrik <api.kur...@google.com>
> > wrote:
>
> > > At least the Java version (unsure about Python) supports additional
> > > fields, if you're in a hurry.
>
> > > ~Arne
>
> > > On Jan 29, 5:56 am, SocialMatrix <thekdis...@gmail.com> wrote:
>
> > > > Also, I can program in python and java as well. Do these Client
> > > > libraries have ability to return more that 20friends?
>
> > > > Thanks a lot
>
> > > > On Jan 28, 10:54 am, Arne Roomann-Kurrik <api.kur...@google.com>
> > > > wrote:
>
> > > > > Currently the PHP client library doesn't have extra parameter support
> > > > > (although it wouldn't be too hard to add!).  We're working on an
> > > > > updated version that adds this and a bunch of other requested
> > > > > features, which should be out pretty soon, so you may just want to
> > > > > wait for that update to go out.
>
> > > > > In the future, questions about the client libraries are best asked in
> > > > > the following 
> > > > > group:http://groups.google.com/group/opensocial-client-libraries
>
> > > > > Thanks,
> > > > > ~Arne
>
> > > > > On Jan 28, 2:48 am, SocialMatrix <thekdis...@gmail.com> wrote:
>
> > > > > > HiAll, I am trying to get list ofallfriendsusing PHP client
> > > > > > library. How do I change the MAX value?
>
> > > > > > Thank You,
> > > > > > Atit
>
> > > > > > On Jan 28, 3:09 am, SocialMatrix <thekdis...@gmail.com> wrote:
>
> > > > > > > I am using PHP client library. How do I change this?
>
> > > > > > > or anyway to change this using REST API?
>
> > > > > > > Thank You
>
> > > > > > > On Jan 26, 1:43 am, Bert Van den Brande <cyr...@gmail.com> wrote:
>
> > > > > > > > You should indicate that you wantALLfriendsto be retrieved, 
> > > > > > > > default is 20.
>
> > > > > > > > Seehttp://code.google.com/apis/opensocial/docs/0.8/reference/#opensocial...
>
> > > > > > > > Code example from Chris Chabot :
>
> > > > > > > >   var req = opensocial.newDataRequest();
> > > > > > > >   var spec = opensocial.newIdSpec({"userId" : "OWNER", 
> > > > > > > > "groupId" : "FRIENDS"});
> > > > > > > >   var params = {
> > > > > > > >     "max" : 1000
> > > > > > > >   };
> > > > > > > >   req.add(req.newFetchPeopleRequest(spec, params), 
> > > > > > > > "req_friends");
>
> > > > > > > > On Sat, Jan 24, 2009 at 7:12 AM, vick <jain.viv...@gmail.com> 
> > > > > > > > wrote:
> > > > > > > > On Sat, Jan 24, 2009 at 7:12 AM, vick <jain.viv...@gmail.com> 
> > > > > > > > wrote:
>
> > > > > > > > > hi,
> > > > > > > > > m using following code to retriveallfriends..somehow i am 
> > > > > > > > > able to
> > > > > > > > > display only 20friends!!!
> > > > > > > > > help me...
>
> > > > > > > > > <script type="text/javascript">
>
> > > > > > > > >    function init(){
> > > > > > > > >     request();
> > > > > > > > >    }
>
> > > > > > > > >      function request() {
> > > > > > > > >        var idspec = opensocial.newIdSpec({ "userId" : "OWNER",
> > > > > > > > > "groupId" : "FRIENDS" });
> > > > > > > > >        var req = opensocial.newDataRequest();
> > > > > > > > >        req.add(req.newFetchPersonRequest
> > > > > > > > > (opensocial.IdSpec.PersonId.OWNER), "get_owner");
> > > > > > > > >        req.add(req.newFetchPeopleRequest(idspec), 
> > > > > > > > > "get_friends");
> > > > > > > > >        req.send(response);
> > > > > > > > >      };
>
> > > > > > > > >      function response(dataResponse) {
> > > > > > > > >        var owner = dataResponse.get('get_owner').getData();
> > > > > > > > >        varfriends= dataResponse.get('get_friends').getData();
> > > > > > > > >        var html = 'AllrockstarFriendsof ' + 
> > > > > > > > > owner.getDisplayName
> > > > > > > > > ();
> > > > > > > > >        html += ':<br><ul>';
> > > > > > > > >        friends.each(function(person) {
> > > > > > > > >          html += '<li>' + person.getDisplayName() + '</li>';
> > > > > > > > >        });
> > > > > > > > >        friends.each(function(person) {
> > > > > > > > >          html += '<li>' + person.getDisplayName() + '</li>';
> > > > > > > > >        });
> > > > > > > > >        html += '</ul>';
> > > > > > > > >        document.getElementById('message').innerHTML = html;
> > > > > > > > >      };
>
> > > > > > > > >      gadgets.util.registerOnLoadHandler(init);
>
> > > > > > > > >    </script>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"OpenSocial Application Development" group.
To post to this group, send email to opensocial-api@googlegroups.com
To unsubscribe from this group, send email to 
opensocial-api+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/opensocial-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to