[OpenSocial] Re: How to secure opensocial APP ?

2008-11-04 Thread api . kurrik
Here's an updated version of the article I referred to: http://wiki.opensocial.org/index.php?title=Validating_Signed_Requests In it, I link to a site that I put together that contains the public keys for containers that I've been able to use: https://opensocialresources.appspot.com/certificates/

[OpenSocial] Re: Creating a valid session with RESTful API

2008-11-04 Thread api . kurrik
Well once the user of your app gets authorized via OAuth, you get a token you can store for future access. This solves the case where an OpenSocial user wants to log in at your website but they haven't "installed" your app on the social network - by logging in, they are prompted to share informa

[OpenSocial] Re: Use exiting project for gadgets

2008-11-04 Thread api . kurrik
Hi Ranu, is not supported for OpenSocial development. This is a feature that was implemented for iGoogle, but does not work with social applications. If you're working on non-social gadgets for iGoogle, you should check out the iGoogle developer forum for additional help - http://groups.goog

[OpenSocial] Re: not able to see submitted gadgets in gadgets directory

2008-11-04 Thread api . kurrik
Hi, This forum isn't for discussing iGoogle-specific topics. Please post your question in http://groups.google.com/group/Google-Gadgets-API, and someone familiar with that site should be able to help you. Thanks, ~Arne On Nov 3, 9:11 pm, ranu <[EMAIL PROTECTED]> wrote: > I have submitted goo

[OpenSocial] Re: Login

2008-11-04 Thread api . kurrik
This depends on the container you're looking to support. On iGoogle, you can use the OAuth proxy to access OAuth protected resources- see http://code.google.com/apis/gadgets/docs/oauth.html for more information. However, this will not work on social networks for the time being (hopefully it will

[OpenSocial] Re: authentication related problem

2008-11-04 Thread api . kurrik
Haha, you will *certainly* not be able to get the password of any iGoogle user through any API. If you want to use google accounts in your application, you could create an AppEngine application and let people with Google accounts log into it. Once logged in, you could get their email and display

[OpenSocial] Announcing the OpenSocial Wiki!

2008-11-04 Thread api . kurrik
I'm happy to announce that we finally have http://wiki.opensocial.org up and running! From the announcement [1]: "The new OpenSocial Community Wiki provides one central place where we can all collaborate and build a comprehensive set of resources for OpenSocial. Check out the wiki today and yo

[OpenSocial] Re: Building an Open Social Application for an Existing Website

2008-10-29 Thread api . kurrik
Hi Patrick, Sorry that you found the documentation to be unclear! We're working on guides for the new development models that have sprung up for OpenSocial in the past few months, but hopefully I can help out via the group until those are ready. To me it sounds like you want to access your

[OpenSocial] Re: Creating a valid session with RESTful API

2008-10-29 Thread api . kurrik
Hi Kalisky, The RESTful API uses the OAuth protocol to authorize users and applications. Here's a good starter guide on how OAuth works: http://www.hueniverse.com/hueniverse/2007/10/beginners-gui-1.html However, I'm unaware if any containers have implemented OAuth for their RESTful protoco

[OpenSocial] Re: Help

2008-10-29 Thread api . kurrik
This is a discussion best brought up in the "Implementing OpenSocial Containers" group: http://groups.google.com/group/opensocial-container/topics or in the Shindig discussion list. You may also want to look at the guides posted here: http://www.chabotc.com/generic/setting-up-shindig-and-partuza-

[OpenSocial] Re: Orkut Sandbox question

2008-10-29 Thread api . kurrik
Hi Ajay, Currently, orkut doesn't allow developers to change the URL of a gadget in the orkut directory. So usually, developers make development and production versions of their apps, and only list the production version in the directory. Once you're happy that the development version is pr

[OpenSocial] Re: Undefined gadgets.TabSet

2008-10-29 Thread api . kurrik
Thanks for reposting the follow up! This should be fixed on iGoogle now. ~Arne On Oct 20, 10:35 pm, Ric <[EMAIL PROTECTED]> wrote: > Reply from iGoogle Developer Forum: > > Dan (Google Employee) 20 oct, 20:19 > Hi, > Unfortunately, a recent iGoogle update disabled gadgets.* API calls > in > th

[OpenSocial] Re: How to secure opensocial APP ?

2008-10-29 Thread api . kurrik
Hi Robson, You have to verify the signed requests on your server (check this page out for how to do so: http://code.google.com/p/opensocial-resources/wiki/OrkutValidatingSignedRequests). With a verified request, you will know the OpenSocial IDs of the VIEWER and OWNER as well as the app that

[OpenSocial] Re: Help: jQuery hide/show/toggle loads xml document tree!!

2008-10-29 Thread api . kurrik
Apparently using links with href="#" in orkut causes this problem. Try changing your links to href="javascript:void(0);" instead. ~Arne On Oct 20, 11:12 am, Yusuf <[EMAIL PROTECTED]> wrote: > I am trying to hide a simple div with a form element within using > jQuery. When I click on 'Hide form'

[OpenSocial] Re: help about gadget

2008-10-29 Thread api . kurrik
Was your app approved for the directory? You should check the email address you listed in the gadget spec- orkut will send feedback about your submission there. If you continue to have problems, please visit the orkut developer group and post a question (along with your app URL) there: http://gr

[OpenSocial] Re: How to know which opensocial version is currently supported by specific containers?

2008-10-29 Thread api . kurrik
Hi Amit, Check out this page for information about which containers support which versions of OpenSocial: http://code.google.com/apis/opensocial/gettingstarted.html As an additional note, 0.8 and 0.8.1 of OpenSocial both use the same tag - so if a container supports 0.8 gadgets, it will a

[OpenSocial] Re: Problems with internet explorer and making request

2008-10-29 Thread api . kurrik
Hi Agulla, Sorry for the late response. I tried loading your app in orkut using Internet Explorer, but was unable to reproduce the issues you described. Are you still experiencing them? Which container do you use? ~Arne On Oct 20, 5:49 am, agulla <[EMAIL PROTECTED]> wrote: > Hi All, > >

[OpenSocial] Re: Multiple "canvas" sections

2008-10-16 Thread api . kurrik
Hi Warren, This is a spot-on assessment, and has been a problem for developers for a while now. Thankfully, we're working on a solution called "proxied content" sections which will allow creating paged applications in a much easier way. The general idea is that your app specifies a "src" att

[OpenSocial] Re: how to get list of user's friends who have added application

2008-10-16 Thread api . kurrik
Hi Vishal, To do this using the OpenSocial API, you should use the HAS_APP filter when requesting friends. http://www.opensocial.org/Technical-Resources/opensocial-spec-v081/opensocial-reference#opensocial.DataRequest.FilterType.HAS_APP I'm actually not sure whether orkut supports this yet o

[OpenSocial] Re: How to determine if owner and viewer are friends

2008-10-14 Thread api . kurrik
Hi Dave, Right now your approach is probably the best way to do this. 0.8 containers may start to support the IS_FRIENDS_WITH filter: http://www.opensocial.org/Technical-Resources/opensocial-spec-v081/opensocial-reference#opensocial.DataRequest.FilterType_field_detail which means that you cou

[OpenSocial] Re: Displaying text in an html doc using SWFObject

2008-10-14 Thread api . kurrik
Hi Tom, This group is intended for talking about OpenSocial programming, so there may not be that many developers here familiar with this type of flash programming. Have you tried posting in Adobe's flash support forums? ~Arne On Oct 11, 8:20 am, Tom M <[EMAIL PROTECTED]> wrote: > Hello. >

[OpenSocial] Re: seeking help regading adding social activities

2008-10-14 Thread api . kurrik
You should post in the orkut group here: http://groups.google.com/group/opensocial-orkut/topics and ask what they're looking for for your app to be more social. Why not try something like showing which ringtones the viewer's friends have downloaded? ~Arne On Oct 12, 5:08 am, nishant <[EMAIL P

[OpenSocial] Re: Opensocial Help

2008-10-14 Thread api . kurrik
OpenSocial is a specification, so there's not really "source code" that you can download. What exactly are you looking for? ~Arne On Oct 13, 2:15 pm, "bagya raj" <[EMAIL PROTECTED]> wrote: > Please any one give source for Opensocial API otherwise how to download from > net specify the URL(site

[OpenSocial] Re: Submitting an application

2008-10-14 Thread api . kurrik
Some containers let you change the XML file of your gadget, including name and description without needing to resubmit the gadget for review. MySpace, however, requires you to go through review each time you change your gadget xml. With regard to the time it takes to get listed in a directory, i

[OpenSocial] Re: Navigating between profile and canvas view : how to construct URL for links in profile view

2008-10-14 Thread api . kurrik
Hi Suresh, requestNavigateTo() actually has a third parameter named opt_ownerId: http://www.opensocial.org/Technical-Resources/opensocial-spec-v08/gadgets-reference08#gadgets.views.requestNavigateTo You could try passing in the current OWNER's ID to this parameter to see if the navigation takes

[OpenSocial] Re: Creating the url to the application canvas from the profile view in friendster

2008-10-14 Thread api . kurrik
You should use the gadgets.views.requestNavigateTo() function to navigate to the canvas view: http://www.opensocial.org/Technical-Resources/opensocial-spec-v08/gadgets-reference08#gadgets.views.requestNavigateTo You can call this in response to an onclick event on a link, to make a link that navi

[OpenSocial] Re: checking whether viewer has installed the application and viewer is owner or not

2008-10-14 Thread api . kurrik
When I need to track this, I use the Persistence API to store a token for the OWNER whenever the application loads. Then, if I need to see if the VIEWER has the application installed, I request the persistent data for the VIEWER- if the token is there, then they've installed the application at so

[OpenSocial] Re: opensocial contact email id

2008-10-14 Thread api . kurrik
Hi Kathir, Post in orkut's developer group to ask: http://groups.google.com/group/opensocial-orkut/topics ~Arne On Oct 14, 1:39 pm, dskathir <[EMAIL PROTECTED]> wrote: > hi > > I've submitted my orkut application long back. I just want to know the > status. Is there any contact email id for

[OpenSocial] Re: How to modify rendered XML file in Opensocial

2008-10-14 Thread api . kurrik
Hi Soumya, Which container are you using? Some containers don't support changing the location of a gadget once it is listed in a directory, so having your gadget hosted at an IP address is something I would not advise doing. Can you get a domain to point at the IP address of the gadget? ~Arn

[OpenSocial] Re: can i use flex and open social api to build a portal

2008-10-07 Thread api . kurrik
I haven't really used Flex, but I imagine it can make HTTP requests and process JSON. If these two things are true, you can use RESTful ;) ~Arne On Oct 7, 8:06 am, raj <[EMAIL PROTECTED]> wrote: > Hi... > > I want to know about this. > Can I use social api and flex to build a portal > > Thanks

[OpenSocial] Re: Problem loading all friends list

2008-10-06 Thread api . kurrik
I've looked into this and this is orkut's social data prefetcher, which loads social data for apps before they render- it helps speed up the loading time of apps on orkut. Honestly, it doesn't add that much in terms of size to the page (the data at tiny.txt is a single character) so the only over

[OpenSocial] Re: Using Cookies for storing user data

2008-10-06 Thread api . kurrik
Unfortunately, the architecture of gadgets prevents you from being able to use cookies reliably in your gadget, so you should examine the persistence api (which is now supported by most containers as I understand) to store this kind of information. It also sounds like the information you're stori

[OpenSocial] Re: is it possible to invoke my own json-rpc

2008-10-03 Thread api . kurrik
Are you using the code from the wiki? That example isn't really a good approach to making cross-domain calls because it is slow and insecure. In fact, the header on that example now reads: gadgets.rpc is not designed to enable application developers to execute OpenSocial functions from remote c

[OpenSocial] Re: Query re: tracking applicaiton install/uninstall on Orkut

2008-10-03 Thread api . kurrik
This is a good question for the orkut-specific OpenSocial group: http://groups.google.com/group/opensocial-orkut/topics As I understand, this isn't currently available on orkut, although they are starting to support 0.8 in their sandbox, so hopefully they'll begin offering it soon. ~Arne > Wha

[OpenSocial] Re: Authenticated RPC from gadget to appengine service?

2008-10-03 Thread api . kurrik
Hi Duane, makeRequest will help you do what you are looking for. You can specify the SIGNED authorization type and the container will send the viewer and owner's IDs back to your appengine app, along with a cryptographic hash that you can use to verify that those values were not forged by anot

[OpenSocial] Re: requestSendMessage() is not working

2008-10-03 Thread api . kurrik
Ah, sorry- I should've read your original post more carefully! Does the compose message box pop up on orkut? Which version of OpenSocial are you including? I was able to get your code to work in a 0.8 gadget on sandbox.orkut.com by changing the recipient line to the following: var recipient =

[OpenSocial] Re: Problem loading all friends list

2008-10-03 Thread api . kurrik
Hi, I haven't experienced this, but I haven't used IE that often either. You should probably post a question in the orkut-specific group about this: http://groups.google.com/group/opensocial-orkut/topics Also, you may want to file a bug report with instructions on how to reproduce this: htt

[OpenSocial] Re: mashup app with OpenSocial

2008-10-03 Thread api . kurrik
You could probably do something like this with REST once it is more fully supported on each site. In that case, you wouldn't even need to run your own Shindig server - just have your website make REST calls against each container to fetch the user's information. ~Arne On Oct 2, 2:04 am, Joana

[OpenSocial] Re: Need a Feedback on social network application ideas

2008-10-03 Thread api . kurrik
GuessWhere sounds pretty interesting. I'm imagining a nice user interface that could take advantage of the Maps API :) ~Arne On Oct 1, 11:38 pm, Sveta <[EMAIL PROTECTED]> wrote: > Application 1: GuessWhere > GuessWhere is a game application targeted to the social network users, > who love to t

[OpenSocial] Re: Google's OpenSocial Gadget "Feeds in Tabs" doesn't work in Hyves.

2008-10-01 Thread api . kurrik
Can you provide a link to the gadget you tried to install? ~Arne On Sep 28, 12:06 pm, leng <[EMAIL PROTECTED]> wrote: > Why didn't work "Feeds in Tabs" in Hyves (Opensocial 0.7) ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[OpenSocial] Re: requestSendMessage() is not working

2008-10-01 Thread api . kurrik
"Email Denial : User has email for the app off" - Sounds like you found the answer to your own problem. Which container are you using? You probably need to enable email messages in a control panel somewhere. ~Arne On Sep 25, 8:54 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi >  the r

[OpenSocial] Re: Message Service Implementation in PHP shindig

2008-10-01 Thread api . kurrik
You'd probably have a better chance of getting an answer to this if you asked this question of the Shindig mailing list: ~Arne On Sep 27, 4:11 am, "anand sharma" <[EMAIL PROTECTED]> wrote: > Hi to All, > Currently i am using PHP Shindig 0.8 and all Basic*service.php is working > fine , but sti

[OpenSocial] Re: Email Address

2008-10-01 Thread api . kurrik
I don't know of any container right now that delivers email addresses to applications, due to privacy considerations. However, many containers offer messaging through use of the requestSendMessage() method. You should check that out if you need to directly message users. ~Arne On Sep 30, 6:19

[OpenSocial] Re: Search engines & Gadgets

2008-10-01 Thread api . kurrik
The templates will support optimizations through server-side rendering, so that's certainly possible although not guaranteed based on which container you're on. Your best bet for server-side rendering is probably through the use of a new feature called proxied content, which fetches a section fr

[OpenSocial] Re: Development API,s for new Launch

2008-10-01 Thread api . kurrik
How are you looking to combine APIs? Do you want to become an OpenSocial container and run apps, or just use data from other containers? ~Arne On Sep 30, 10:33 am, Vloggs <[EMAIL PROTECTED]> wrote: > I am not good at all with API intergration, We would like to combine > API's from other Video

[OpenSocial] Re: notifications&feeds help !!

2008-09-24 Thread api . kurrik
Here's code that should post a notification (OpenSocial 0.7!): function sendNotification() { var params = {}; params[opensocial.Message.Field.TITLE] = "Title of the notification goes here"; params[opensocial.Message.Field.TYPE] = opensocial.Message.Type.PRIVATE_MESSAGE; var bo

[OpenSocial] Re: Not able to direct the Viewer to the CONTENT PAGE from MY UPDATES

2008-09-24 Thread api . kurrik
Hi Javed, Without seeing any code I can't really say what you may or may not be doing correctly. Can you post the link that your activity update is creating, as well as your code that gets the parameters from the current view and renders the appropriate page? ~Arne On Sep 24, 3:01 am, Jave

[OpenSocial] Re: how to send notifications! urgent!

2008-09-24 Thread api . kurrik
Sorry, to send a private message, the following works on Friendster: function sendNotification() { var params = {}; params[opensocial.Message.Field.TITLE] = "Title of the notification goes here"; params[opensocial.Message.Field.TYPE] = opensocial.Message.Type.PRIVATE_MESSAGE;

[OpenSocial] Re: The sample code in Developer's guide for v0.8 includes some mistakes.

2008-09-23 Thread api . kurrik
Whoops, sorry about the errors! Guess this bit just got left in from the old document. We'll update the document tomorrow. Thanks for reporting these! ~Arne On Sep 23, 10:59 pm, yoichiro <[EMAIL PROTECTED]> wrote: > Hello, > > Eiji and I found some mistakes at the sample code of the persiste

[OpenSocial] Re: Visual Design specs of profile and

2008-09-23 Thread api . kurrik
Hey, Sorry for taking so long to respond. View dimensions are probably one of the largest points of friction for developers trying to make truly "universal" gadgets - OpenSocial is supposed to make the process of developing for multiple containers much easier, but it won't give a magical soluti

[OpenSocial] Re: Browser Compatibility

2008-09-23 Thread api . kurrik
People are working on a set of compliance tests that should produce a chart like this. You can check out http://opensocial-compliance.appspot.com/ to see how it's coming along :) ~Arne On Sep 15, 10:17 pm, Goan Dude <[EMAIL PROTECTED]> wrote: > Is there a chart / feature documents out there th

[OpenSocial] Re: pagination for the results from server and link to a different page!

2008-09-23 Thread api . kurrik
You'll need to implement this yourself, probably through use of the makeRequest function. If your server has one URL that returns a list of links, you can attach listeners to each of those links which will call makeRequest to retrieve specific product information. You'll probably want to only re

[OpenSocial] Re: Search engines & Gadgets

2008-09-23 Thread api . kurrik
Any gadget that's publicly viewable should be indexable by Google, which is smart enough to follow IFrame URLs. So any technique you'd use for an Ajax-heavy website should probably be applicable on a gadget as well, with the exception of requestNavigateTo() links (the crawler should be able to fo

[OpenSocial] Re: how to send notifications! urgent!

2008-09-23 Thread api . kurrik
I believe that I got the following to work on Friendster: function sendNotification() { var params = {}; params[opensocial.Message.Field.TITLE]="Title of the notification goes here"; params[opensocial.Message.Field.TYPE] = opensocial.Message.Type.NOTIFICATION; var body="Text of the notifi

[OpenSocial] Re: Not able to create Activity of User Action

2008-09-23 Thread api . kurrik
Hi Javed, Looks like you are trying to call postActivity(); in text that gets inserted into the innerHTML of an element on the page. Most good, secure web browsers won't execute code that is inserted in this manner. Instead, just do this: function callback(resp) { document.getElementById(

[OpenSocial] Re: Unable to read the Location details from the API Data

2008-09-23 Thread api . kurrik
Hi Soujanya, var city=owner_location[0].fields_.locality references fields which are not a standard part of the API. There should not be any documentation that instructs you to use these fields. To get information out of an address object, use the following sample: function response(data) {

[OpenSocial] Re: I can access the PROFILE_URL and THUMBNAIL_URL of users who are not in the VIEWER nor the OWNER?

2008-09-23 Thread api . kurrik
Yes, although your permission to access users by ID will vary from container to container. I believe that orkut's policy is to only return users who have installed your application, for example. ~Arne On Sep 23, 12:18 pm, "Robson Dantas" <[EMAIL PROTECTED]> wrote: > Hi Jefferson, > > Try it: >

[OpenSocial] Re: Horoscope Application is not workig

2008-09-23 Thread api . kurrik
Can you give a link to the application and say which container it is not working on? A description of what is going wrong would help as well. ~Arne On Sep 23, 11:23 am, nilesh patil <[EMAIL PROTECTED]> wrote: > Hi Horoscope Application Team, > >           Your Application is not updating Horos

[OpenSocial] Re: Getting the Profileurl

2008-09-23 Thread api . kurrik
So you want to use the value of title_url as the address of an IFrame? Why not just copy the url and use it in your application? ~Arne On Sep 23, 8:31 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hai  below is our code i want to Retrive the title_url value which can > be written in mod

[OpenSocial] Re: Fetching a User ID - OWNER's - in iGoogle

2008-09-23 Thread api . kurrik
Hi, For question 1: Yes, iGoogle supports both VIEWER and OWNER. Since iGoogle doesn't have public profile pages, VIEWER and OWNER will always be the same person. Question 2: It looks like something is cut off on your message. If you post the rest of the sample we can see what is happening

[OpenSocial] Re: sending message to friend list in friendster.

2008-09-23 Thread api . kurrik
Does it work on Friendster? ~Arne On Sep 22, 6:23 am, Himanshu <[EMAIL PROTECTED]> wrote: > Hey all now its done! > > On Sep 9, 12:35 pm, Himanshu <[EMAIL PROTECTED]> wrote: > > > Hi, > > here is the my implementation forsendingmessagetofriendinFRIENDSTER: > > > >     > >   > > = > >

[OpenSocial] Re: Creating an url

2008-09-23 Thread api . kurrik
Can you describe what you mean by "add an url"? ~Arne On Sep 22, 3:39 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hai this is anitha. I want add an url by using the open social > applications. pls send the code for that one. > > Thanks&Regards > Anitha.A --~--~-~--~~---

[OpenSocial] Re: testing aplication on all containers with userId

2008-09-15 Thread api . kurrik
Hi, You should check out Ning's developer forum if you have questions about installing OpenSocial applications: http://developer.ning.com/forum/topic/listForCategory?categoryId=1185512%3ACategory%3A4646 To answer your second question, you should always be able to get the OWNER's OpenSocial

[OpenSocial] Re: Filtering user by persistent data

2008-09-15 Thread api . kurrik
Looks like you found an answer, but if this is something you'd like the API to support, please post a thread requesting it in the OpenSocial specification discussion list: http://groups.google.com/group/opensocial-and-gadgets-spec/topics Thanks, ~Arne On Sep 15, 10:30 am, "[EMAIL PROTECTED]" <[

[OpenSocial] Re: Friendster using gadget.rpc

2008-09-15 Thread api . kurrik
Hm, it looks like you may need to include a to your ModulePrefs section. Friendster may also not support RPC, which is defined by the spec to be an optional feature. If including the element works, please respond and I'll work on getting the article updated. Thanks, ~Arne On Sep 15, 5:14 am

[OpenSocial] Re: Browser Compatibility

2008-09-15 Thread api . kurrik
Any known issues on orkut can be found here: http://code.google.com/p/opensocial-resources/issues/list Currently, the only IE7 issue I see is this one: http://code.google.com/p/opensocial-resources/issues/detail?id=288 If you find any more bugs, please file an issue report! Thanks, ~Arne On S

[OpenSocial] Re: Joomla + shindig

2008-09-15 Thread api . kurrik
I'm assuming that an integration would allow OpenSocial applications to run on any Joomla site. It would be an easy way to plug additional functionality into Joomla without having to develop a lot of extra features. ~Arne On Sep 13, 2:18 pm, "anand sharma" <[EMAIL PROTECTED]> wrote: > HI to All

[OpenSocial] Re: friendster application: Paging for friend

2008-09-12 Thread api . kurrik
Hi Jarebb, Your code looks good, so it looks like Friendster might be having a problem. You should submit a bug report to them indicating what you're seeing. Here's some code that shows how to get the total number of the owner's friends. It should display two alerts: the first should displ

[OpenSocial] Re: Application to read member and community public data

2008-09-10 Thread api . kurrik
There isn't currently such a method in OpenSocial, although I've heard a few people talking about wanting to implement something like this. You may want to post to the specification group at http://groups.google.com/group/opensocial-and-gadgets-spec/topics and propose what you would like to be abl

[OpenSocial] Re: getting the applicationId and username

2008-09-10 Thread api . kurrik
Hi, For your first question, you should try to request the GIVEN_NAME field on the NAME field of a Person object. Here's some code that does this: function response(data) { var owner = data.get("req").getData(); var name = owner.getField(opensocial.Person.Field.NAME); var givenname = na

[OpenSocial] Re: Joomla + shindig

2008-09-10 Thread api . kurrik
You may want to take a look at the source code for Partuza to see how it integrates with Shindig. You'll probably need to create some sort of OpenSocial plugin for Joomla that mimics this code. http://code.google.com/p/partuza/ Hope this helps, ~Arne On Sep 10, 12:31 am, "anand sharma" <[EMAI

[OpenSocial] Re: Viewerlist and Friends list dosen't work why?

2008-09-10 Thread api . kurrik
This code looks good to me (and works on the orkut sandbox). If you continue having a problem, please post to the orkut developer group here: http://groups.google.com/group/opensocial-orkut/topics Thanks, ~Arne On Sep 9, 3:10 am, sure <[EMAIL PROTECTED]> wrote: > Hi to all, >            I am u

[OpenSocial] Re: Getting BadRequest while accessing owner and viewers data

2008-09-10 Thread api . kurrik
This code looks good to me. Make sure that you're including in your XML file. ~Arne On Sep 9, 5:59 am, [EMAIL PROTECTED] wrote: > Hello, > > I am developing application for orkut. > Currently i am testing it in sandbox.orkut.com. > > I am trying to access owners and viewers data (specifically

[OpenSocial] Re: Is Orkut updates its Sanbox?

2008-09-10 Thread api . kurrik
Hi, looks like this is an orkut-related issue. Please post in the orkut-specific group here: http://groups.google.com/group/opensocial-orkut/topics Thanks, ~Arne On Sep 9, 3:31 am, sure <[EMAIL PROTECTED]> wrote: > Hi to all, >               Is it Orkut starting any updates on its Sanbox. Now

[OpenSocial] Re: Rejection of social gadget.

2008-09-10 Thread api . kurrik
Hi, looks like this is an orkut-related issue. Please post in the orkut-specific group here: http://groups.google.com/group/opensocial-orkut/topics Thanks, ~Arne On Sep 9, 1:30 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hi, > >    i posted my gadget in orkut appication but okut sent

[OpenSocial] Re: Signed Requests fail on large values

2008-09-08 Thread api . kurrik
Hi, This looks like an orkut issue. Could you post in the orkut developer forum to get a specific answer? http://groups.google.com/group/opensocial-orkut Thanks, ~Arne On Sep 4, 11:23 am, nice_guy <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to send SIGNED POST requests with large val

[OpenSocial] Re: Storing Data in OpenSocial

2008-09-08 Thread api . kurrik
Hi Brian, Sounds like you want to use the Persistence API to store this data. You should check out this section in the OpenSocial developer's guide: http://code.google.com/apis/opensocial/docs/0.7/devguide.html#Persistent Hope this helps, ~Arne On Sep 4, 9:54 am, litto dog <[EMAIL PROTECT

[OpenSocial] Re: Orkut keeps asking for a description??

2008-09-08 Thread api . kurrik
Hi, Please post this question in the orkut-specific group: http://groups.google.com/group/opensocial-orkut This group is for general questions about OpenSocial development. Thanks, ~Arne On Sep 8, 1:55 am, 123gotoandplay <[EMAIL PROTECTED]> wrote: > i think i got it. > > I haven't got ac

[OpenSocial] Re: Status of Approval

2008-09-08 Thread api . kurrik
Hi, Please post this question in the orkut-specific group: http://groups.google.com/group/opensocial-orkut This group is for general questions about OpenSocial development. Thanks, ~Arne On Sep 8, 5:13 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hai, i posted an application in o

[OpenSocial] Re: Orkut application Approval Problem.

2008-09-08 Thread api . kurrik
Hi, Please post this question in the orkut-specific group: http://groups.google.com/group/opensocial-orkut This group is for general questions about OpenSocial development. Thanks, ~Arne On Sep 4, 5:41 am, sure <[EMAIL PROTECTED]> wrote: > Hi to all, >              I am new person for O

[OpenSocial] Re: New bee queries

2008-09-03 Thread api . kurrik
Hi Sudipto, This sounds like a cool idea for an app, but I'm afraid that most of your questions are orkut-related and I can't offer you support on this group. You should check out the orkut-specific developer group to ask your questions. Here's a link to the appropriate place: http://groups.g

[OpenSocial] Re: Shindig support for NetworkDistance

2008-09-03 Thread api . kurrik
Hi Neeraj, Shindig is an Apache project and we don't support it in this group. You should check out the shindig mailing list if you have any questions about developing with Shindig. ~Arne On Aug 30, 10:21 am, neeraj <[EMAIL PROTECTED]> wrote: > I was checking out shindig for the NetworkDis

[OpenSocial] Re: How to get orkut viewer friends' details from inside an iFrame ?

2008-09-03 Thread api . kurrik
Hi, You should check out this wiki page about how to set up gadgets RPC calls to pass information between your application and an iFrame: http://code.google.com/p/opensocial-resources/wiki/RPC Hope this helps, ~Arne On Sep 1, 10:57 pm, dskathir <[EMAIL PROTECTED]> wrote: > I am developi

[OpenSocial] Re: makeRequest sends two different requests

2008-09-02 Thread api . kurrik
Hi Carlos, I'm not sure what you mean about two requests. The container should be fetching your gadget URL periodically, according to the caching headers you're sending from your server. The makeRequest should be hitting a URL you specify - since these are two different URLs, you should have

[OpenSocial] Re: Linking multiple pages in the application

2008-08-29 Thread api . kurrik
You could use the gadgets tab library to do this: http://code.google.com/apis/gadgets/docs/ui.html#Tabs Hope this helps, ~Arne On Aug 29, 3:39 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi > >  I newly started on open social. I got a requirement where the user > can see different page

[OpenSocial] Re: Upload jpg/wav files with OpenSocial

2008-08-29 Thread api . kurrik
There's no OpenSocial methods to store flash or photo data, but if you host images and flash from your own server, you can use the getProxyUrl() function to have a container cache your content for you. This should dramatically reduce the bandwidth needed to serve images and flash files. SWFObjec

[OpenSocial] Re: how to get orkut viewer details from inside a frame ?

2008-08-29 Thread api . kurrik
Could you just use the gadget to forward the URL of the iframe? Why does the iframe need to send the message? ~Arne On Aug 26, 11:52 pm, dskathir <[EMAIL PROTECTED]> wrote: > am developing an application that contains forwarding articles to > friends. am using iframe to load my article from my

[OpenSocial] Re: The correct way of retrieving viewer's friends with v0.8

2008-08-29 Thread api . kurrik
Thanks for bringing it up on the spec list - hopefully we can get that case resolved :) ~Arne On Aug 25, 7:20 pm, yoichiro <[EMAIL PROTECTED]> wrote: > Hi Anand, Arne, Chris, > > Thank you for your reply. I understood how to use the network_distance > and group_id. And I came as a reminder that

[OpenSocial] Re: Visual Design specs of profile and

2008-08-29 Thread api . kurrik
Hi Dominic, These values will change depending on the container you're using. Which platform are you developing for? ~Arne On Aug 25, 4:09 pm, dominic <[EMAIL PROTECTED]> wrote: > Hi > I need to get, for our graphics designer, the max height and max width > of an open social gadget in both

[OpenSocial] Re: The correct way of retrieving viewer's friends with v0.8

2008-08-25 Thread api . kurrik
Hi Yoichiro, For example 1, you would be defining the group of people connected one "hop" away from the VIEWER, whether they are friends, contacts, etc. For example 2, you are defining the group of people who are in the VIEWER's "friends" group. This matches the old VIEWER_FRIENDS construct. E

[OpenSocial] Re: orkut persistence data on viewer space

2008-08-25 Thread api . kurrik
Hi, We've got a pretty long article about using Persistence data for different types of uses available here: http://code.google.com/apis/opensocial/articles/persistence.html - you may want to check that out for more information about how you can structure a scrap/wall-type of application.

[OpenSocial] Re: need code for fetching a orkut user profile data which compitable for my search condition

2008-08-25 Thread api . kurrik
Hi Mathu, You're going to need to change the code from that example to fetch VIEWER_FRIENDS or OWNER_FRIENDS instead of just the VIEWER, and change the request from a newFetchPersonRequest to a newFetchPeopleRequest. Here are two links that should help give you some information: OpenSocial ide

[OpenSocial] Re: Use of nofollow versus other tags

2008-08-22 Thread api . kurrik
According to http://googleblog.blogspot.com/2005/01/preventing-comment-spam.html Q: Will Google recognize the 'nofollow' keyword when it's part of a space separated list? According to the HTML spec, the value of the 'rel' attribute is a space separated list of link types. A: Absolutely. We'll pra

[OpenSocial] Re: Xml doctype White space error

2008-08-22 Thread api . kurrik
Hi Sri, You should post this in the orkut developer support forum located at http://groups.google.com/group/opensocial-orkut. Someone working on the orkut platform should be able to help you. As a general guideline, posting your code or a link to your code helps us debug problems a lot quic

[OpenSocial] Re: OpenSocial Wiki in PT-BR

2008-08-22 Thread api . kurrik
Thanks for the hard work translating these resources! ~Arne --~--~-~--~~~---~--~~ 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@googlegroup

[OpenSocial] Re: Preload not working

2008-08-22 Thread api . kurrik
Which container? You should post in the appropriate container forum with this question. I'm going to guess that you're talking about orkut here. You should post this at http://groups.google.com/group/opensocial-orkut if this is true. ~Arne On Aug 18, 9:37 pm, Rajasekhar <[EMAIL PROTECTED]> w

[OpenSocial] Re: Getting friends data the user may be profle user or login user

2008-08-22 Thread api . kurrik
Hi Jagdish, It sounds like you're making requests for VIEWER and VIEWER_FRIENDS. Try changing the social data requests to OWNER and OWNER_FRIENDS, respectively, and you'll get access to the profile owner's data. ~Arne On Aug 19, 3:31 am, [EMAIL PROTECTED] wrote: > Hello, > I am developing t

[OpenSocial] Re: Diploma Thesis: Interfaces of social network sites

2008-08-22 Thread api . kurrik
Interesting. Can you post a link to your thesis when it is published? I'm interested in seeing the results of this survey. ~Arne On Aug 19, 7:22 am, Karsten Beyer <[EMAIL PROTECTED]> wrote: > Hi, > > first of all apologies for this slightly off-topic mail. > > We are two students of Business

[OpenSocial] Re: View this page "OpenSocial Feature Requests"

2007-11-16 Thread api . kurrik
Hi Dustin, I'm seeing a lot of good feedback items here that aren't in the official feature requests/issues pages. Could you update http://groups.google.com/group/opensocial/web/opensocial-feature-requests with items that are feature requests, and http://groups.google.com/group/opensocial/web

[OpenSocial] Re: The Orkut Sandbox only returns friends who are also whitelisted for the sandbox

2007-11-16 Thread api . kurrik
People who have had their accounts approved to access http://sandbox.orkut.com ~Arne On Nov 16, 10:13 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Sorry to sound like a nube, but what to you mean by whitelisted? --~--~-~--~~~---~--~~ You received this me

  1   2   >