Hey guys,
I'm unfamiliar with the new oauth system. I wanted to crawl the status updates of my friends, and their friends' (if permissions allow) with my specified account credentials using the python-twitter api.
With the new oauth authentication, does it means that I have to first register an application with twitter before I can us...
I want to display the "Request for Permission" box directly when the user enters http://apps.facebook.com/myfancyapp. The Facebook Authentication documentation is pretty clear on how the URL have to look like
https://graph.facebook.com/oauth/authorize?client_id=[APPID]&redirect_uri=http://www.myfancyapp.com/&scope=user_photos,us...
Hi there. I'm using iOS SDK to do Facebook Connect in an iPhone application, I can successfully login in and get the accessToken from the Facebook instance but I'm not able to use it from a rails/facebooker.
I do the call on the iPhone app:
NSString * url = [NSString stringWithFormat:@"http://localhost:3000/fb_login?access_token=%@",[s...
I'm trying to use the Yahoo Social Python SDK to get a users contacts through oAuth. This is for a webapp running on App Engine. SO, I have everything set up to run through the oAuth dance, exchanging consumer keys and verifiers and all that jazz. I store the token and can reuse it to retrieve a users contacts until the token the expires...
I'm trying to use the twitter_oauth gem : http://github.com/moomerman/twitter_oauth
In my model I have:
require 'twitter_oauth'
And within a function I have:
def example
client = TwitterOAuth::Client.new(
:consumer_key => 'xxxx',
:consumer_secret => 'xxxx',
:token => "xxxx",
:secret => "xxxx")
return client
end
...
I'm having a lot of trouble getting started with creating a google apps marketplace application.
I've tried numerous demos, including the php hello world example you can download from google. In every case, the openid portion works fine, but oauth is failing.
I've tracked it down to the hybrid openid/oauth request not returning an oa...
My php application logs into to Gmail via oauth provided access keys and fetch headers for all messages in inbox. The php-imap extension allows only for login/password based authentication. I want to modify the extension so that it support oauth based authentication too. I need to figure out how to make that change inside the extension c...
Overview
I'm looking to create a (REST) API for my application. The initial/primary purpose will be for consumption by mobile apps (iPhone, Android, Symbian, etc). I've been looking into different mechanisms for authentication and authorization for web-based APIs (by studying other implementations). I've got my head wrapped around mo...
How do I use OAuth within my Java GWT application?
In particular, I want to get a list of users in my Google Aps domain, using this API:
http://code.google.com/googleapps/domain/profiles/developers_guide_protocol.html
I know this sounds like a question, that probably has been asked many times before, but I couldn't find any Java code o...
I have a LinkedIn API class that I've written for PHP that makes use of a third-party stand-alone OAuth class, not the possibly installed PECL PHP OAuth extension. I've designed it this way to allow the many users don't have the ability/access to install the PECL extension to make the needed OAuth calls.
So, for PHP installs with no PE...
I'm making an iPhone program that can post to Twitter. I've downloaded Januus' PlainOAuth project, and I'm incorporating code into my own project. PlainOAuth is working fine, but my own project generates the following in the console when I post:
2010-10-18 21:53:09.990 TwitterTableView[18860:207] Status posted. HTTP result code: 401
O...
I've found a handful of libraries, which claim to be plug'n'play, but without understanding how OAuth even works, I am not confident in my ability to fix any bugs that arise.
Could someone please just give me an OAuth For Dummies lecture here?
...
Hi,
I'm developing a website which run on WAMP stack (windows-apache-mysql-php). I'm trying to connect my web server to another enterprise application server and get some web services from it. I need to register my web server as "OAuth Consumer" in that enterprise server.
I already configure my web server to use SSL. I have a cert file...
Hello, I'm developing an iOS app that needs to connect to Twitter, Facebook, Google, Yahoo, Gowalla and Foursquare via OAuth. I have been using http://github.com/dbloete/oauth-objc and that works fine with Twitter (OAuth v.1, basic implementation), but has problems with everything else (it seems that each provider has different standards...
I'm working on a REST webservice, and in particular authentication methods for browser-based requests. (using JsonP or Cross-domain XHR requests/XDomainRequest).
I've done some research in OAuth, and also Amazon's AWS. The big drawbacks of both is that I need to do either of the following:
Store secret tokens in the browser
Let a ser...
I've just spent a lot of time looking into the best ways to create iphone and android apps for an existing rails app that I've built and I feel that I haven't actually gotten any closer to knowing how to best achieve this.
What I want:
I would like to have the rails app and the mobile code cleanly separated. I'm not looking to just re...
I have been coding against a Delphi EXE (win32 desktop app) to access twitter and do certain functions. It used to use Basic authentication with the api limitation. I know I have to convert this to OAuth. I have been reading over the documentation trying to determine the best approach. I understand the best method is the Web browser...
Hi,
I am trying to implement the OpenID + OAuth hybrid protocol in my application for Google.
I am getting the request token. So the next step as document in the Federated Login is exchange request token for an access token.
I tried it using OAuth java library but i am not getting the access token. I am trying both the 3-legged and 2-...
Hello,
How to Register an OAuth Consumer with Evernote and request user authorization? Please send me some links regarding this topic
with regards
Kavya
...
I'm currently investigating OAuth 2.0 Service Provider solutions for .NET (I appreciate that 2.0 isn't a complete spec).
What libraries are people currently aware of, other than DotNetOpenAuth ?
...