本文整理汇总了TypeScript中web-request.json函数的典型用法代码示例。如果您正苦于以下问题:TypeScript json函数的具体用法?TypeScript json怎么用?TypeScript json使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了json函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: init
async init(investor: Investor): Promise<KycInitResult> {
const id = investor.id.toHexString();
const hash = base64encode(bcrypt.hashSync(id + config.kyc.apiSecret));
const kycOptions = {
baseUrl: this.baseUrl,
method: 'POST',
auth: {
user: this.apiToken,
password: this.apiSecret
},
headers: {
'User-Agent': 'JINCOR ICO/1.0.0'
},
body: {
merchantIdScanReference: uuid.v4(),
successUrl: `${ config.app.apiUrl }/kyc/uploaded/${ id }/${ hash }`,
errorUrl: `${ config.app.frontendUrl }/dashboard/verification/failure`,
callbackUrl: `${ config.app.apiUrl }/kyc/callback`,
customerId: investor.email,
authorizationTokenLifetime: this.defaultTokenLifetime
}
};
return await request.json<KycInitResult>('/initiateNetverify', kycOptions);
}
示例2: validateVerification
async validateVerification(method: string, id: string, input: ValidateVerificationInput): Promise<ValidationResult> {
try {
return await request.json<ValidationResult>(`/methods/${ method }/verifiers/${ id }/actions/validate`, {
baseUrl: this.baseUrl,
auth: {
bearer: this.tenantToken
},
method: 'POST',
body: input
});
} catch (e) {
if (e.statusCode === 422) {
if (e.response.body.data.attempts >= config.verify.maxAttempts) {
await this.invalidateVerification(method, id);
throw new MaxVerificationsAttemptsReached('You have used all attempts to enter code');
}
throw new NotCorrectVerificationCode('Not correct code');
}
if (e.statusCode === 404) {
throw new VerificationIsNotFound('Code was expired or not found. Please retry');
}
throw e;
}
}
示例3: resolve
return new Promise<LandingsdataByLandingdate[]>((resolve, reject) => {
const url = (window.location.origin + '/api/landingsdata');
WebRequest.json<LandingsdataResponse>(url + params)
.then(response => {
resolve(transformLandingsdatoReponse(response))
})
.catch(rejection => reject(rejection));
});
示例4: deleteUser
async deleteUser(login: string): Promise<void> {
return await request.json<void>(`/user/${ login }`, {
baseUrl: this.baseUrl,
method: 'DELETE',
headers: {
'authorization': `Bearer ${ this.tenantToken }`
}
});
}
示例5: logoutTenant
async logoutTenant(token: string): Promise<void> {
await request.json<TenantVerificationResult>('/tenant/logout', {
baseUrl: this.baseUrl,
method: 'POST',
body: {
token
}
});
}
示例6: verifyTenantToken
async verifyTenantToken(token: string): Promise<TenantVerificationResult> {
return (await request.json<TenantVerificationResponse>('/tenant/verify', {
baseUrl: this.baseUrl,
method: 'POST',
body: {
token
}
})).decoded;
}
示例7: invalidateVerification
async invalidateVerification(method: string, id: string): Promise<void> {
await request.json<Result>(`/methods/${ method }/verifiers/${ id }`, {
baseUrl: this.baseUrl,
auth: {
bearer: this.tenantToken
},
method: 'DELETE'
});
}
示例8: verifyUserToken
async verifyUserToken(token: string): Promise<UserVerificationResult> {
return (await request.json<UserVerificationResponse>('/auth/verify', {
baseUrl: this.baseUrl,
method: 'POST',
headers: {
'authorization': `Bearer ${ this.tenantToken }`
},
body: { token }
})).decoded;
}
示例9: loginUser
async loginUser(data: UserLoginData): Promise<AccessTokenResponse> {
return await request.json<AccessTokenResponse>('/auth', {
baseUrl: this.baseUrl,
method: 'POST',
headers: {
'authorization': `Bearer ${ this.tenantToken }`
},
body: data
});
}
示例10: loginTenant
async loginTenant(email: string, password: string): Promise<AccessTokenResponse> {
return await request.json<AccessTokenResponse>('/tenant/login', {
baseUrl: this.baseUrl,
method: 'POST',
body: {
email,
password
}
});
}