我在制作礼物(包装硬币,生命等)时遇到问题。我一直在使用this guide。
我想我在https://developers.facebook.com/做了正确的事情,创造了硬币类型,制作了对象并使用了它的id。 这是我的请求代码:
FBSDKGameRequestContent *gameRequestContent = [[FBSDKGameRequestContent alloc] init];
gameRequestContent.message = @"Take this coins";
gameRequestContent.title = @"Choose users";
gameRequestContent.filters = FBSDKGameRequestFilterAppUsers;
gameRequestContent.actionType = FBSDKGameRequestActionTypeSend;
gameRequestContent.objectID = @"386681778192859";
[FBSDKGameRequestDialog showWithContent:gameRequestContent delegate:self];
我的问题是如何在其他设备上从此请求中获取消息或回调。我在facebook网站上寻找解决方案,但我没有找到任何东西。一般来说,是否可以或者我必须制作自定义服务器?