codeon / twitcurl

Automatically exported from code.google.com/p/twitcurl
1 stars 0 forks source link

Only seem to be able to reply to my own tweets? #58

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Call statusUpdate
2.
3.

What is the expected output? What do you see instead?

I expect to be able to reply to any tweet by using the ID. 
I can only reply to my own tweets.

What version of the product are you using? On what operating system?

Latest twitcurl available. Windows 7. 

Please provide any additional information below.

void ReplyTweet(twitCurl* pointer)
{

    std::cout<<"Enter tweet id to wish to reply to:";
    std::cin>>id;

    std::cout<<"Enter a tweet:";
    std::cin>>tmpStr;
    */
    std::string replyMsg="";
    if( pointer->statusUpdate( tmpStr, id))
    {
        pointer->getLastWebResponse( replyMsg );
        std::cout<<"Tweet\t"<<tmpStr<<"\twas sent correctly."<<endl;

    }

Original issue reported on code.google.com by lazzari....@gmail.com on 13 Apr 2015 at 6:21