ユーザーがリンクと説明を付けてスクリーンショットを Facebook に投稿できるように、アプリ (iOS、Android) を取得しようとしています。FB.API() を使用して、アプリから、Facebook がアプリ用に自動生成したユーザーのアルバムにスクリーンショットをアップロードできます。
int width = Screen.width;
int height = Screen.height;
Texture2D tex = new Texture2D(width, height, TextureFormat.RGB24, false);
// Read screen contents into the texture
tex.ReadPixels(new Rect(0, 0, width, height), 0, 0);
tex.Apply();
byte[] screenshot = tex.EncodeToPNG();
var wwwForm = new WWWForm();
string picName = "Idioman_" + Time.time + ".png";
wwwForm.AddBinaryData("image", screenshot, picName);
Debug.Log("trying to post screenshot");
FB.API("me/photos", Facebook.HttpMethod.POST, PostPicCallback, wwwForm);
また、FB.Feed() を使用して、リンクと説明を含む画像をインターネットからユーザーのフィードに投稿できます。スクリーンショットをリンクと説明とともにユーザーのフィードに投稿する方法はありますか?