Skip to content

用户绑定手机

登录后调用此接口,可以更换绑定手机

接口信息

项目
接口地址/user/replacephone
请求方式GET / POST
需要登录
对应模块user_replacephone
文档分类用户与登录

请求参数

参数类型必填默认值说明
phonestring-手机号码
oldcaptchastring-原手机号码的验证码
captchastring-新手机号码的验证码
countrycodestring86国家地区代码,默认 86

HTTP 示例

bash
GET /user/replacephone?phone=xxx&captcha=1234&oldcaptcha=2345

编程式调用

ts
import { userReplacephone } from 'hana-music-api'

const result = await userReplacephone({
  phone: 'xxx',
  captcha: '1234',
  oldcaptcha: '2345',
})

console.log(result.body)

补充说明

说明 : 登录后调用此接口,可以更换绑定手机

必选参数 :

phone : 手机号码

oldcaptcha: 原手机号码的验证码

captcha:新手机号码的验证码

可选参数 :

countrycode: 国家地区代码,默认 86

接口地址 : /user/replacephone

调用例子 : /user/replacephone?phone=xxx&captcha=1234&oldcaptcha=2345

Released under the MIT License.