Hi, I am making an app/game that will allow players to post their scores in their Twitter feed if they so wish. I can initialise Twitter and allow the player to login via a button and when they click on the Tweet Score button it shows the correct message and image to tweet. The problem occurs when they click on the tweet button, the screen goes back to the game screen and you assume the Tweet has been posted but when you check your Twitter feed it has not. Here is my compose code:
public void StartTwitterComposer(TwitterSession session, string imageUri)
{
Twitter.Compose(session, imageUri, "I got a new hi-score" + hiscore, new string[] { "#videogames", "#gamer" });
}
any help as to why it wont post would be really helpful.
Thanks