Skip to content

Twitter

levching edited this page Apr 15, 2020 · 3 revisions

Before you begin

Code Snippets

For a twitter post, you may provide text, URL and a picture as Texture2D. See the method described below:

using SA.iOS.Social;
...
ISN_Twitter.Post("My app Screenshot", "htpp://myUrl.com", screenshot);

You may also subscribe to a competition event to find out if a user has posted to Twitter. See the code snippet below:

using SA.iOS.Social;
...
public void ShareTwitter() {
    ISN_Twitter.Post("My app Screenshot", "htpp://myUrl.com", screenshot, HandleOnTwitterPostResult);
}

void HandleOnTwitterPostResult(SA_Result result) {
    if(result.IsSucceeded) {
        Debug.Log("Post Success!");
    } else {
        Debug.Log("Post Failed!");
    }
}

You can also post gif image to the twitter feed providing gif image device path.

ISN_Twitter.PostGif("My Gif", "gif file path");

Please, note that posting process will run in background and may take a while. The same OnPostResult action will be fired once a post request is completed.

About

Foundation

AV Foundation

App Tracking Transparency

Game Kit

Store Kit

UI Kit

Social

Replay Kit

Contacts

AVKit

Photos

App Delegate

User Notifications

MediaPlayer

Core Location

AdSupport

EventKit

CloudKit

Authentication Services

XCode

Knowledge Base

Clone this wiki locally