【发布时间】:2021-07-12 14:40:00
【问题描述】:
我正在使用 Capacitor JS 和 Nuxt JS 构建一个应用程序来与 Slack API 交互,以便我可以设置我的 Slack 状态,我已经创建了一个 Slack 应用程序并有一个 xoxp- 令牌,当我使用它时它工作得很好通过 Postman 使用 POST 请求到达端点,但从我的浏览器 (localhost) 和手机上正在运行的应用程序中,我收到以下 CORS 错误:
从源“http://localhost:3000”访问“https://slack.com/api/users.profile.set”处的 XMLHttpRequest 已被 CORS 策略阻止:请求标头字段授权不允许预检响应中的 Access-Control-Allow-Headers。
现在这似乎很愚蠢,因为您必须使用 authorization 标头来提供 Bearer 令牌以进行身份验证,但即使在暂时省略此之后,CORS 错误仍然存在。
我正在尝试将POST 连接到users.profile.set
View another method
的端点
我的 Axios 代码中缺少什么?
setSlackStatusWithReminder (title, expiry) {
const body = this.convertToQueryString({
profile: this.convertToQueryString(this.profile),
token: 'xoxp-mytoken'
})
this.$axios.post('https://slack.com/api/users.profile.set', body, {
timeout: 10000,
transformRequest(data, headers) {
delete headers.common['Content-Type'];
return data;
}
}).then(res => {
console.log(res)
if (res.data.ok != true) {
alert('something went wrong with the .then')
}
this.isSettingStatus = false
this.actions.isShown = false
}).catch(err => {
this.isSettingStatus = false
this.actions.isShown = false
})
},
更新
我有一个函数可以将我的请求正文从我的数据中转换为查询字符串,如下所示:
export default {
data () {
return {
profile: {
status_text: '',
status_emoji: '',
status_expiration: 0
}
}
}
}
查询字符串函数转换正文
convertToQueryString (obj) {
const convert = Object.keys(obj)
.map((key, index) => `${key}=${encodeURIComponent(obj[key])}`)
.join('&')
return convert
},
我正在构建它:
const body = this.convertToQueryString({
profile: this.convertToQueryString(this.profile),
token: 'xoxp-mytoken'
})
它给了我一个invalid_profile 回复。
【问题讨论】:
-
我真的不认为 slack-api 打算从浏览器访问)也许 api 设置中有一些 cors 选项,但我对此表示怀疑。
标签: javascript node.js vue.js slack-api