This commit is contained in:
xiaojunnuo
2024-09-24 02:42:08 +08:00
parent 154f627f2a
commit 92aa4a6d63
12 changed files with 169 additions and 11 deletions

View File

@@ -97,4 +97,15 @@ export class PlusService {
throw new Error(message);
}
}
async bindUrl(subjectId: string, url: string) {
return await this.request({
url: '/activation/subject/urlBind',
data: {
subjectId,
appKey: AppKey,
url,
},
});
}
}