提问人:zeifi 提问时间:11/17/2023 更新时间:11/17/2023 访问量:12
错误 403 在 android 中使用改造击中 API 时禁止
Error 403 Forbidden when hit the API using retrofit in android
问:
我正在尝试使用改造在android中点击API以从文件浏览器获取令牌。如果我像这样从命令提示符运行命令,它就会起作用:
curl -X POST -d “{”username“: ”abc“, ”password“: ”xyz“, ”recaptcha“: ”“}” -H “Content-Type: application/json” http://xyz:8888/api/login
但是当我使用改造点击api时,它给出了一个错误403禁止
val user = (""""{\"username\": \"$userName\", \"password\": \"$password\", \"recaptcha\": \"\"}"""")
val tokeResponse = api.getImageToken(Config.imgTokenUrl, user)
@POST
suspend fun getImageToken(
@Url url: String,
@Body user: String,
@Header("Content-Type") content_type: String = "application/json"
): Response<String>
答: 暂无答案
评论