Android Question Instagram Story Sharing Intent

ykucuk

Well-Known Member
Licensed User
Longtime User
Hello,

I can share image with intent
B4X:
com.instagram.android/com.instagram.share.common.ShareHandlerActivity

is there possibility share story with intent on instagram ?
 

asales

Expert
Licensed User
Longtime User
Try with this:
B4X:
com.instagram.android/com.instagram.share.handleractivity.StoryShareHandlerActivity

You can check the strings to intents with this code:
B4X:
Dim pm As PackageManager

For Each cn As String In pm.QueryIntentActivities(inten)
    Log(cn)
Next
 
Upvote 0
Top