我被要求用户在Facebook上分享内容并获得积分作为回报。有没有办法可以检测到用户是否共享了什么?
我只使用here中的信息,我有这个代码:
ShareLinkContent content = new ShareLinkContent.Builder()
.setContentUrl(Uri.parse("some link"))
.build();
ShareButton shareButton = (ShareButton)findViewById(R.id.fb_share_button);
shareButton.setShareContent(content);
xml中的对象:
<com.facebook.share.widget.ShareButton
android:id="@+id/fb_share_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView3"
android:layout_centerHorizontal="true" />