gpt4 book ai didi

android - 从 AppInvite Google android 获取结果

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:12:07 24 4
gpt4 key购买 nike

我在我的 android 应用程序中使用 Google Appinvite Api 向 friend 发送邀请。

我能够发送请求并且它工作正常。但我想跟踪我通过我的应用向其发送请求的 friend 。

这是我获取邀请 ID 的代码。

但是我如何从邀请 ID 中获取发送人姓名或电子邮件。

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

if (requestCode == REQUEST_INVITE) {
if (resultCode == RESULT_OK) {
String[] ids = AppInviteInvitation.getInvitationIds(resultCode, data);
Log.d("TAG", getString(R.string.sent_invitations_fmt, ids.length));
} else {
showMessage(getString(R.string.send_failed));
}
}
}

String[] ids是我发送的邀请id数组

最佳答案

作为应用程序,您无法获取人名和电子邮件列表,只能获取邀请 ID。电子邮件和姓名对发送邀请的人是私有(private)的,即拥有设备和联系数据的人,并且私有(private)信息不会与发送邀请的应用共享。

关于android - 从 AppInvite Google android 获取结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34868493/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com