The twitCurl twitter API library now supports OAuth authorization methods for twitter! Check out project wiki page for more information on twitCurl OAuth flow:
Thank you! You're a life-saver! I can't believe how little support there is for OAuth in Twitter C++ libraries. This is exactly what I was looking for.
Is there support for OAuth in the linux version of twitCurl? I don't seem a Makefile present for the latest version of twitCurl that supports OAuth. Does one exist?
I love things related to computer software, robotics and automobiles. Here, I blog about malware, computer security and other software stuff. Stay tuned for more!
4 Comments:
Thank you! You're a life-saver! I can't believe how little support there is for OAuth in Twitter C++ libraries. This is exactly what I was looking for.
This comment has been removed by the author.
I used twitcurl lib.
and operate almost well.
but, The error occurs, when I use Direct Message.
The lower part is the source.
===================== source begin =====================
// direct_message
char DirectMsg[1024];
memset( DirectMsg, 0, 1024 );
printf( "\nEnter a new direct message: " );
gets( DirectMsg );
tmpStr = DirectMsg;
char receiveUser[1024];
memset(receiveUser, 0, 1024);
printf( "\nEnter a receive user: " );
gets( receiveUser );
tmpStr1 = receiveUser;
if( twitterObj.directMessageSend(tmpStr1, tmpStr, false) )
{
twitterObj.getLastWebResponse( replyMsg );
printf( "\ntwitterClient:: twitCurl::directMessageSend web response:\n%s\n", replyMsg.c_str() );
}
else
{
twitterObj.getLastCurlError( replyMsg );
printf( "\ntwitterClient:: twitCurl::directMessageSend error:\n%s\n", replyMsg.c_str() );
}
===================== source end =====================
error messgae : Incorrect signature
How do I fix the source?
Please let me know the solution.
Thank You.
Is there support for OAuth in the linux version of twitCurl? I don't seem a Makefile present for the latest version of twitCurl that supports OAuth. Does one exist?
Post a Comment
<< Home