我正在使用 RESTFb api 在 facebook 墙上发布消息
我的代码是:
val facebookClient: FacebookClient = new DefaultFacebookClient("access_key")
def publishMessage(msg:消息): String = {
val publishMessageResponse: FacebookType = facebookClient.publish("me/feed", classOf[FacebookType],
Parameter.`with`("message", msg))
publishMessageResponse.getId()
}
但是此代码仅在我登录我的 facebook 帐户时才有效。如果我没有登录,它会给我“用户会话注销”的错误。它告诉我每次都生成访问令牌。