【发布时间】:2017-11-22 17:21:20
【问题描述】:
我想在 Android 上打开 Facebook Messenger。
要在 iOS 上执行此操作,您只需执行以下操作(如此处所述:https://github.com/appcelerator-modules/ti.facebook):
var fb = require('facebook');
fb.presentMessengerDialog({
title: "Appcelerator Titanium rocks!", // The title of the link
description: "Shared from my Titanium application", // The description of the link
link: "https://appcelerator.com", // The link you want to share
referal: "ti_app", // The referal to be added as a suffix to your link
placeID: "my_id", // The ID for a place to tag with this content
to: [] // List of IDs for taggable people to tag with this content
});
你会如何在 Android 上做到这一点?
【问题讨论】:
标签: titanium appcelerator appcelerator-titanium titanium-alloy