I want to share a video to KakaoTalk or KakaoStory. But I can’t find the API to do that. Only I can do is sharing a URL link. I wander whether there is such API.
@ync618 I think it will be possible with the function of sharing OS Content in Android. Please see the link:
https://developer.android.com/reference/android/content/Intent.html#ACTION_SEND
Here is example:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png"); // video content type?
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(path));
intent.setPackage("com.kakao.story"); // or com.kakao.talk
@michael Thanks. It solve my problem by other way.
1개의 좋아요