你可以在facebook页面上发帖,在推特上发布推文和Azure Mobile Service吗?

时间:2015-03-30 17:06:21

标签: facebook azure twitter azure-mobile-services

我看到可以对社交网络进行身份验证,但我看看这些库是否允许我们在Facebook页面和推特帐户上发布。

想要使用移动服务,但没有看到其他替代方案,我想我必须在PHP中提供服务,以及从我的移动应用程序响应的ajax。

1 个答案:

答案 0 :(得分:0)

是的,您必须自己实施。 首先配置您的移动服务后端以查询Facebook publish_actions(使用名称:MS_FacebookScope |值:publish_actions)。 然后在.Net后端添加Facebook c#sdk并使用

发布到墙上
var postParams = new
                {
                    message = "Hello World!"
                };
new FacebookClient(userAccessToken).Post("/me/feed", postParams);