[oauth] Login to Google services without user consent page

2009-11-12 Thread bob_kh...@yahoo.com
Hi, I am working on a project which requires our clients to upload videos to our account. Users will use our website to upload. I want to be able to login directly from our servers to our youtube account and I donot want the user to see a consent page or anything. So everything should be transpa

[oauth] Re: which php libraries are people using?

2009-11-12 Thread Chris Messina
Can you guys tell me specifically what needs to be added to the OAuth.net Code page? Happy to update it to the latest — and I see a few libraries listed here that should make their way on to that page? What's missing? Chris On Thu, Nov 12, 2009 at 1:23 PM, Zhihong wrote: > > My favorite is > >

[oauth] Re: which php libraries are people using?

2009-11-12 Thread Zhihong
My favorite is https://svn.iamcal.com/public/php/lib_oauth/lib_oauth.php It's a very tiny library which just handles signing but that's exactly what I need. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "OAuth" g

[oauth] Re: Unable to fetch Picasa Web Albums using OAuth

2009-11-12 Thread Eric Sachs
If you have not done so already, you should try posting this to Google's specific discussion group on authentication for Google APIs: http://groups.google.com/group/Google-Accounts-API On Thu, Nov 12, 2009 at 8:13 AM, Razak wrote: > > Hi, > > I was using gdata api to fetch Picasa Web Albums. I

[oauth] Re: associating oauth access token with user in the next visit

2009-11-12 Thread Don
thanks, now it makes sense. don On Nov 13, 2:13 am, Robert Winch wrote: > If you want to keep track of the access token, then you would likely have > authentication occur in your application as well as the authentication at > the Service Provider (i.e. at Google). If you do not want to maintai

[oauth] Re: associating oauth access token with user in the next visit

2009-11-12 Thread Robert Winch
If you want to keep track of the access token, then you would likely have authentication occur in your application as well as the authentication at the Service Provider (i.e. at Google). If you do not want to maintain users for your application, then you could use a federated login for your applica

[oauth] Re: associating oauth access token with user in the next visit

2009-11-12 Thread Don
Thanks, but from the application (consumer) point of view, the user has not entered any username (user enters username and password on google website). Is there a way to query what is the username/email used to login ? many thanks On Nov 13, 1:17 am, Robert Winch wrote: > The access token to u

[oauth] Re: associating oauth access token with user in the next visit

2009-11-12 Thread Robert Winch
The access token to user relationship should be stored within the application that requested the access token. For this to work well you will likely want the user to authenticated to your application and then request the access token. The next time they login, the access token can be reused. Regar

[oauth] Re: which php libraries are people using?

2009-11-12 Thread Morten Fangel
On Nov 12, 2009, at 8:02 AM, rob ganly wrote: > > hi morten, > > thanks for your reply. > > i recognise that there's nothing 'missing' from the library but it > requires a fair bit of complimentary coding to be done in order to > implement it, hence 'there are a few gaps to fill', however i can

[oauth] Unable to fetch Picasa Web Albums using OAuth

2009-11-12 Thread Razak
Hi, I was using gdata api to fetch Picasa Web Albums. I am using gdata- photos-1.0.jar. I was getting the response till some days before. But now it is giving me some errors. Below is the method I am using public AlbumFeed getAuthorizedContent(String token, String tokenSecret) throws Exception

[oauth] Re: which php libraries are people using?

2009-11-12 Thread rob ganly
hi morten, thanks for your reply. i recognise that there's nothing 'missing' from the library but it requires a fair bit of complimentary coding to be done in order to implement it, hence 'there are a few gaps to fill', however i can appreciate your point regarding the hooks and data-storage. w

[oauth] Re: which php libraries are people using?

2009-11-12 Thread Morten Fangel
Hi, There is nothing "missing" in the http://oauth.googlecode.com/svn/code/php/ library to implement either a consumer or a service-provider.. Obviously you need to code up your own data-storage and add in the hooks at the pages you want to be your endpoints, but this is just so you have

[oauth] associating oauth access token with user in the next visit

2009-11-12 Thread Don
hi, i am very confused, once i get the access token from google to access user contacts, how do I associate that user with that token again in the future? many thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[oauth] Re: which php libraries are people using?

2009-11-12 Thread rob ganly
hi all, i'm currently implementing the version that joseph mentioned, i.e. http://oauth.googlecode.com/svn/code/php/ i need to implement both a consumer and a provider. obviously the most involved part is creating the provider. obviously there are a few gaps to fill in the above library before