From 771fbda5349959160427e6fb98da1f9c0c025f3d Mon Sep 17 00:00:00 2001 From: SparkLee Date: Fri, 14 Jun 2024 10:58:46 +0800 Subject: [PATCH] add openId field to model AlipaySystemOauthTokenResponse --- tea/base/oauth/main.tea | 1 + 1 file changed, 1 insertion(+) diff --git a/tea/base/oauth/main.tea b/tea/base/oauth/main.tea index ff28a4f..490b8bc 100644 --- a/tea/base/oauth/main.tea +++ b/tea/base/oauth/main.tea @@ -14,6 +14,7 @@ model AlipaySystemOauthTokenResponse { subMsg: string(name='sub_msg'), userId: string(name='user_id'), + openId: string(name='open_id'), accessToken: string(name='access_token'), expiresIn: long(name='expires_in'), refreshToken: string(name='refresh_token'),