简体   繁体   中英

How to open Facebook Album from Appcelerator Android app?

I know how to make an intent in android, you open a specific album of a Facebook page. I tried opening the page, but I can't open the album page.

var intent = Ti.Android.createIntent ({
         action: Ti.Android.ACTION_VIEW,
         data: 'fb: // page / {id}'
}); Ti.Android.currentActivity.startActivity (intent);

I put it this way: 'fb://album/131980240302966?owner=#116121531888837'

But it does not work, this is the page I try to access ...

https://www.facebook.com/media/set/?set=a.131980240302966.29820.116121531888837&type=3

Can you tell me what is my mistake?

Thanks in advance.

It looks like you'd like to open an URL scheme? You should use Ti.Platform.openURL for that.

Here's a list of Facebook URL schemes you could try: http://wiki.akosma.com/IPhone_URL_Schemes#Facebook

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM