Is it possible to fetch user information after user login friend
connect?
On Dec 4, 7:57 am, "Andi Albrecht" <
albrecht.a...@googlemail.com>
wrote:
> On Thu, Dec 4, 2008 at 1:24 PM, kang <
areyouloo...@gmail.com> wrote:
> > GAE itself has google account model, and user can login.. but if they want
> > to post through FriendConnect ,they need to login for the second time....
> > it's not a good user experience
>
> You're right, I think it's very confusing or maybe even annoying if a
> user has to login two times on two different Googlish-looking login
> pages...
>
> And from a developer's point of view it would be much easier to spice
> up an already existing appengine application with some social features
> if one could just use a Python API toFriendConnect with an user
> object already present within appengine. [just dreaming... ;-)]
>
>
>
> > On Thu, Dec 4, 2008 at 8:17 PM, Andi Albrecht <
albrecht.a...@googlemail.com>
> > wrote:
>
> >> On Thu, Dec 4, 2008 at 10:50 AM, kang <
areyouloo...@gmail.com> wrote:
> >> > right
> >> > i've configured for my app....
> >> > but what do you think of theFriendConnect? I think an appengine
> >> > website
> >> > need not use it...
>
> >> Why not? Could be a nice extra for some applications... But it would
> >> be great to have an easy option to re-use an login on an appengine
> >> website forFriendConnect (any hints? maybe I've just missed
> >> something...)
>
> >> > On Thu, Dec 4, 2008 at 6:28 AM, Andi Albrecht
> >> > <
albrecht.a...@googlemail.com>
> >> > wrote:
>
> >> >> Hi Rajiv,
>
> >> >> here's how I did it... I copied the two files in a directory called
> >> >> "static" (where all my CSS and images live). Then I'd added the
> >> >> following lines to app.yaml:
>
> >> >> - url: /rpc_relay.html
> >> >> static_files: static/rpc_relay.html
> >> >> upload: static/rpc_relay.html
>
> >> >> - url: /canvas.html
> >> >> static_files: static/canvas.html
> >> >> upload: static/canvas.html
>
> >> >> I'm not sure if you can omit the upload directive. But the relevant
> >> >> part is to point the urls to the files you've downloaded from the
> >> >>friendconnect page.
>
> >> >> Hope that helps,
>
> >> >> Andi
>
> >> >> On Wed, Dec 3, 2008 at 8:37 PM, Rajiv R <
rajsp...@gmail.com> wrote:
>
> >> >> > am trying to usefriendconnect for my app engine application. I am