示例#1
0
 public void ShareStatusTwitter()
 {
     if (SoomlaProfile.IsLoggedIn(Provider.TWITTER))
     {
         SoomlaProfile.UpdateStatusWithConfirmation(
             Provider.TWITTER,                                // Provider
             "Check out this great challenging memory game",  // Message to post as status
             "",                                              // Payload
             null,                                            // Reward
             "Do you want to share this f****n awsom status?" // Message to show in the confirmation dialog
             );
     }
     else
     {
         TwitterLogin();
     }
 }