gpt4 book ai didi

android - 尝试使用 JRAW 检索 Reddit 用户保存的帖子时出现 403 错误

转载 作者:行者123 更新时间:2023-11-30 00:08:19 24 4
gpt4 key购买 nike

我目前正在尝试使用 JRAW reddit api wrapper 获取用户保存的帖子使用此代码:

val helper = App.get().accountHelper
val paginator = helper.reddit.me()
.history("saved")
.build()

val saved = paginator.next()

Context for App class

这总是导致 403 - Forbidden。我使用 JRAW-Android new user example 登录并获取 oauth token 然后切换到用户 accountHelper.switchToUser(userName) 这表明该帐户已通过身份验证..

为什么我无法进行身份验证有什么想法吗?

最佳答案

没有意识到 Reddit 有 scopes .请求 getAuthorizationUrl

时,我必须将 history 范围添加到字符串数组
String[] scopes = new String[]{ "read", "identity", "account", "save", "history"};
String authUrl = helper.getAuthorizationUrl(requestRefreshToken, useMobileSite, scopes);

关于android - 尝试使用 JRAW 检索 Reddit 用户保存的帖子时出现 403 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48600876/

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