Right now when I use Facebook's new OAuth2 system, it tells the user that my app is requesting to "Publish content to your Wall". How do I disable this (for fear of scaring off users), as I don't need this enabled. Possible?
...
I'm using OAConsumer in my xAuth twitterEngine and i'm adding Twitpic OAuth Echo to it. But it won't POST the NSData. here is some of my code:
//other file
NSArray *reps = [[imageToUpload image] representations];
NSData *imageData = [NSBitmapImageRep representationOfImageRepsInArray:reps
usingType:NSJP...
the new facebook graph / oauth seems to be only for iFrame / connect apps? is it possible to use the oauth system for fbml apps?
...
Is there a way to use google's OAUTH to find an @googlewave.com account name?
...
Very quick question for freshbooks oauth. When requesting a Request Token you need to provide (amoung others) the oauth_signature method.
Is the signature the consumer key and the consumer secret seperated by an ampersand? e.g.
_consumer_key_%26_consumer_secret_
where _consumer_key_ is the consumer key. _consumer_secret_ is the cons...
I'm using the gdata OAuth controllers to get an OAuth token and then signing my requests as instructed.
[auth authorizeRequest:myNSURLMutableRequest]
It works great for GET requests but POSTs are failing with 401 errors. I knew I wouldn't be able to remain blissfully ignorant of the OAuth magic.
The Google Reader API requires paramet...
Hello, I am moving from the basic authentication method using username
and password to the OAuth based authentication.
I was using an old version of the pear package Services_Twitter, that
did not support OAuth.
The latest version of this package supports OAuth authentications, it
has a few dependencies (HTTP_Request2, HTTP_OAuth).
It ...
I want to make it dirt simple for users coming to my site to register so they can post comments, vote on things, etc. I would like for them to be able to use their facebook id, twitter id, yahoo mail id, gmail id, AIM id, msn id, or whatever else people are likely to have (not necessarily all of those, but the more the better). I want ...
I need to obtain an access_token as an App, not as an admin or user. This is so that I can post/comment/like in a the style of "[ app name ] has commented on your post".
The problem is that when I attempt to get an access token (which I do successfully), I'm getting one that is for me (the admin) because I'm logged in when I attempt to ...
Hi,
Is there any tutorial out there showing how to use OAuth on IPhone? Basically all of the tutorials are for twitter, i need something which work for any website, which has OAuth and give general view how to make it work on IPhone.
Thanks
...
To read Google Buzz activities, an authorization token is required. A web application would redirect to Googles login page, where the user logs in and a token is returned back to the web application.
But I have a local Java application without a UI (like a script). This application knows username and password. How to get an authorizatio...
I'm trying to understand how to apply the oAuth consumer library from DotNetOpenAuth in the context of ASP.NET MVC.
oAuth is new to me, and the library doesn't seem very simple. Does anyone have a sample of leveraging this library, for this usage, in ASP.NET MVC?
...
I am trying to use Oauth with jTwitter.. and get an exception while creating the Oauth signpostclient
String JTWITTER_OAUTH_KEY="GDdmIQH6jhtmLUypg82g";
String JTWITTER_OAUTH_SECRET="9zWH6qe0qG7Lc1telCn7FhUbLyVdjEaL3MO5uHxn8";
OAuthSignpostClient client = new OAuthSignpostClient(JTWITTER_OAUTH_KEY, JTWITTER_OAUTH_SECRET,"oob");
throws ...
Has anyone had any luck integrating Twitpic's new OAuth Echo authentication into their iPhone application? This seemed to be a simple task but it's not getting done. I keep getting 400 or 401 errors.
This is also being discussed here:
OAuth Echo problems
p.s. I'm using Ben Gottlieb's Twitter-OAuth library.
...
I need a site that does a decent walkthrough on getting one of the OAuth projects for .Net running for my own company's use. Any pointers to documentation and related sample code would be much appreciated. I can already find DevDefined, Magex, and DotNetOpenAuth. I just don't find anyone writing up their own use of these projects.
...
I am a total newbie in the oAuth area and have set up DotNetOpenAuth to set up an oAuth Service provider. The sample provided in the DotNetOpenAuth download is quite confusing for me...maybe cos i am new to this stuff. There is one default page that creates a database and populates the database. Now I browse to the login.aspx and it asks...
Hi,
I am developing an iPhone app that uses Twitvid library for uploading videos to TwitVid.
This library first authenticates the app using the user-name and password input parameters. Then it uploads the video.
But, recently I switched to OAuth mechanism of authentication which leads to a web-page where user can enter the user-name and...
in my application, user sign in/sing out via openid ( same as stackoverlfow ).
i would like to open up my application a bit via oauth to third party applications.
how do i create my app which is openid-consumer to make it oauth-provider ?
is there some standard,library etc out there ? i am basically working in app engine and python...
Im working with OAuth 0.3.6 and the linkedin gem for a Rails application and I have this issue where OAuth throws an error saying that OAuth::Problem (parameter_absent). The thing is it doesn't throw the error on every occasion its called and the problem is I am unable to reproduce the issue locally to test it.
The documentation says th...
Hi,
I'm working with django-piston to attempt to create an API that supports oAuth.
I started out using the tutorial at:
http://blog.carduner.net/2010/01/26/django-piston-and-oauth/
I added a consumer to piston's admin interface with key and secret both set to "abcd" for test purposes.
The urls are successfully wired-up and the oAut...