You cannot post messages because only members can post, and you are not currently a member.
Description:
The group aims to cover Ruby as well as Ruby on Rails specific implementations.
|
|
|
access toekn
|
| |
hi guys, i'm trying to use oauth gem but i'm always getting this error, could some some give more details about what it is? i saw here [link] that: signature_invalid: the oauth_signature is invalid. That is, it doesn't match the signature computed by the Service Provider.... more »
|
|
oauth-plugin with devise
|
| |
Anybody knows if oauth-plugin can be made working with devise? I must use [link] since it's the only solution at this point that works with mongoDB Any advice would be greatly appreciated. thanks
|
|
Where to store oauth_secret and oauth_token?
|
| |
Hi, we're developing a Rails app that uses Pelles OAuth plugin together with OpenID to access the users' GMail and Google Calendar. We're currently writing the user's oauth_token and oauth_secret to the DB. When fetching the access token we simply do the following: def access_token return @access_token if @access_token... more »
|
|
Validating with open social
|
| |
Hi I have a open social gadget running on google Wave with the following java script. function request(url){ var params = {}; params[gadgets.io.RequestParam eters.AUTHORIZATION] = gadgets.io.AuthorizationType.S IGNED; gadgets.io.makeRequest(url, response, params); }... more »
|
|
0.3.7 pre-pre-release
|
| |
So... I finally buckled down and pulled in a giant pile of changes
that had been stacking up. The goal is to push an 0.3.7 pre-release
to Gemcutter in the next week or so in order that people can test it
before a proper release. (Aside: I'm sure someone knows how to make
pre-release gems; mind doing it and submitting a pull request?)... more »
|
|
Why am I getting different Access token every time?
|
| |
Greetings!
I have some troubles enabling OAuth authentication for my web
application running on Ruby on Rails. I am using authlogic and
authlogic_oauth and that is, in the end, using OAuth gem and therefore
I decided to ask here So shortly:
I succesfully "register" (i.e. obtain the first Access Token for the... more »
|
|
FriendFeed support on OAuth Plugin
|
| |
Hi,
I'm trying to add FriendFeed OAuth support to my app as weel, but I'm
having strange issues.
I'm using the oauth-plugin and I create my FriendfeedToken class, like
this:
class FriendfeedToken < ConsumerToken
FRIENDFEED_SETTINGS={
:site=>"[link]",
:request_token_path => "/account/oauth/request_token" ,... more »
|
|
PLAINTEXT Signature Double-escaped
|
| |
The PLAINTEXT signature was being double-escaped, which was causing
problems.
Instead of:
consumersecret%26tokensecret
it was being double-escaped to:
consumersecret%2526tokensecret
I have fixed the bug, adding tests on my github fork:
[link]
|
|
OAuth not recognizing rails session
|
| |
Sorry if this is a bit out of place, but I am hoping someone may have
experienced this when using Ruby OAuth in a Rails app. I have been
searching for days for a solution with no luck. Here is my problem:
I am grabbing data from Google Analytics using OAuth.
1. I create an Oauth consumer, then get the request token using:... more »
|
|
question about sending XML data
|
| |
Hi.
The signing process is pretty clear when there are post key=value
arguments.
But what happens when I have to send XML encoded data? I have to
implement this myself in the HTTP_Oauth library and was wondering how
the signing is done. A must is compatibility with ruby oauth.
Do I set Content-Type to text/xml, add the raw data and just sign with... more »
|
|
|