动态头像

177 阅读1分钟

b3011745-8af2-4826-a2b1-8804bfb552be.gif

const body = {
    user_info: {
        bui_user: {
            screan_name: "momocat",
            user_id: "1410009035452887",
            // url 为上方动态图片的地址
            avatar_url: "https://p9-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/59613a10eb674b2a91fe0d8f0daa40b0~tplv-k3u1fbpfcp-jj-mark:3024:0:0:0:q75.awebp#?w=112&h=112&s=33131&e=gif&f=5&b=c5b3a8"
        },
        profile: {
            tag_ids: ["7267750693225316396"],
            user_id: "4435896002686637",
            work_direction: "后端开发",
            work_start_time: 1638316800
        },
    }
}
// 这里更换为你的修改资料页面中,update_profile请求的接口地址
const data = await fetch("https://api.juejin.cn/user_api/v1/user/update_profile?aid=2608&uuid=7269238090412901900&spider=0", {
    method: "POST",
    headers: {
        "Content-Type": "application/json",
    },
    credentials: "include",
    body: JSON.stringify(body),
}).then((res) => res.json())
console.log(data);