Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
接口字段调整:Identity.ConnectionId 改为 ExtIdpId
Browse files Browse the repository at this point in the history
  • Loading branch information
luojielin committed Feb 14, 2022
1 parent 4a8f907 commit ed47b2e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gql/schemas.gql
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ type Identity {
openid: String
userIdInIdp: String
userId: String
connectionId: String
extIdpId: String
isSocial: Boolean
provider: String
userPoolId: String
Expand Down
2 changes: 1 addition & 1 deletion lib/constant/gql.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ const UsersWithCustomDocument = `
openid
userIdInIdp
userId
connectionId
extIdpId
isSocial
provider
type
Expand Down
4 changes: 2 additions & 2 deletions lib/constant/gql_manage_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ query userBatch($ids: [String!]!, $type: String) {
openid
userIdInIdp
userId
connectionId
extIdpId
isSocial
provider
type
Expand Down Expand Up @@ -268,7 +268,7 @@ query userBatchWithCustomData($ids: [String!]!, $type: String) {
openid
userIdInIdp
userId
connectionId
extIdpId
isSocial
provider
type
Expand Down
2 changes: 1 addition & 1 deletion lib/management/organization_management_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func TestClient_All(t *testing.T) {
func TestClient_Detail(t *testing.T) {
client := NewClient(userPoolId, appSecret)
log.Println("==========通过 ID 获取用户信息==========")
resp2, _ := client.Detail("611a149db64310ca4764ab15")
resp2, _ := client.Detail("61e7fc4beff20c6bd8b81e4d")
log.Printf("%+v\n", resp2)
}
func TestClient_GetOrganizationList(t *testing.T) {
Expand Down

0 comments on commit ed47b2e

Please sign in to comment.