0
Instagramでデータを共有しようとしていますが、Instagramで自分のコンテンツを共有しています。私は成功コールバックを取得していないか、共有していないときにも失敗コールバックを取得していません。私はInstagram共有用のSDKとAPIを見つけることができません。以下は、私がInstagramでコンテンツを共有しようとした私のコードを述べました。Instagramの共有でコールバックを取得する方法
// Create the new Intent using the 'Send' action.
Intent share = new Intent(Intent.ACTION_SEND);
// Limit this call to instagram
share.setPackage("com.instagram.android");
// Set the MIME type
share.setType(type);
// Create the URI from the media
File media = new File(mediaPath);
Uri uri = Uri.fromFile(media);
// Add the URI to the Intent.
share.putExtra(Intent.EXTRA_STREAM, uri);
try {
// Fire the Intent.
startActivityForResult(share, REQUEST_CODE);
} catch(ActivityNotFoundException e) {
// instagram not installed
}
私はコールバックを取得する方法はありますか? – dev
残念ながら、現在のところ、SDKには含まれていません。だから答えはNOです。 –