我想知道如何邀请或请求。但是共享时FBInstant SDK不会问我任何目标ID。
我的代码在后面(打字稿)
const options : FBInstant.SharePayload = {
intent : "INVITE",
text : "SomeText",
image : base64Image, // exist.
data : {}
};
FBInstant.shareAsync(options);
,这将显示“共享”窗口。 FBInstant.shareAsync()不能完全正常工作。
答案 0 :(得分:0)
您实际上应该将FBInstant.context.chooseAsync
/ FBInstant.context.createAsync
用于Instant Games中的邀请。您的目标应该是将要一起玩的玩家移到同一上下文中(由FBInstant.context
方法指定)。
共享(shareAsync
)用于广播共享,尽管使用了intent
参数,但对邀请而言却没有什么用。