You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've started using erlang_twitter client to tweet but unsuccessfully.
I'm trying to tweet using access that I've provided from my account to my application.
I use the following code to get tokens and post a tweet :
Hi,
I've started using erlang_twitter client to tweet but unsuccessfully.
I'm trying to tweet using access that I've provided from my account to my application.
I use the following code to get tokens and post a tweet :
Consumer = {"My Real Consumer Key", "My Real Consumer Key", hmac_sha1}.
RequestTokenURL = "http://api.twitter.com/oauth/request_token".
{ok, ResponseR} = oauth:get(RequestTokenURL, [], Consumer, "", "").
ParamsR = oauth_http:response_params(ResponseR).
TokenR = oauth:token(ParamsR).
TokenSecretR = oauth:token_secret(ParamsR).
%% Everything is OK till here. So make a new tweet :
twitter_client:direct_new({Consumer, TokenR, TokenSecretR}, Msg).
=> this function returns "ok", but that's false. While debugging, I have the following error from twitter :
\n\n /direct_messages/new.xml\n Could not authenticate you.\nAm I missing something ?
I get the same error when using auth API directly :
oauth:post("http://api.twitter.com/direct_messages/new.xml",["My New Tweet"], Consumer, TokenR, TokenSecretR).
The text was updated successfully, but these errors were encountered: