将大型JSON根据JAVA中的特定键值对拆分为多个小型JSON。

huangapple go评论105阅读模式
英文:

Break big JSON into separate small JSONs based on a specific key, value pair in JAVA

问题

以下是你想要的翻译内容:

  1. String Team1 = "
  2. {
  3. \"users\": [
  4. {
  5. \"displayName\": \"Dennis Law\",
  6. \"givenName\": \"Dennis\",
  7. \"surname\": \"Law\",
  8. \"extension_user_type\": \"user\",
  9. \"identities\": [
  10. {
  11. \"signInType\": \"emailAddress\",
  12. \"issuerAssignedId\": \"dennislaw@gmail.com\"
  13. }
  14. ],
  15. \"extension_timezone\": \"VET\",
  16. \"extension_locale\": \"en-IN\",
  17. \"extension_tenant\": \"Team1\"
  18. },
  19. {
  20. \"displayName\": \"Shaggy Nate\",
  21. \"givenName\": \"Shaggy\",
  22. \"surname\": \"Nate\",
  23. \"extension_user_type\": \"user\",
  24. \"identities\": [
  25. {
  26. \"signInType\": \"userName\",
  27. \"issuerAssignedId\": \"Shaggynatealpha\"
  28. }
  29. ],
  30. \"extension_timezone\": \"NST\",
  31. \"extension_locale\": \"en-AF\",
  32. \"extension_tenant\": \"Team1\"
  33. }
  34. ]
  35. } ";
  36. String Team2 = "
  37. {
  38. \"users\": [
  39. {
  40. \"displayName\": \"Geroge West\",
  41. \"givenName\": \"Geroge\",
  42. \"surname\": \"West\",
  43. \"extension_user_type\": \"user\",
  44. \"identities\": [
  45. {
  46. \"signInType\": \"userName\",
  47. \"issuerAssignedId\": \"gwest\"
  48. }
  49. ],
  50. \"extension_timezone\": \"PST\",
  51. \"extension_locale\": \"en-GB\",
  52. \"extension_tenant\": \"Team2\"
  53. }
  54. ]
  55. } ";
英文:

I have a JSON which I created from SQL Server using JSON PATH, below is how it looks, this JSON is stored in a STRING type of variable.

  1. {
  2. "users": [
  3. {
  4. "displayName": "Dennis Law",
  5. "givenName": "Dennis",
  6. "surname": "Law",
  7. "extension_user_type": "user",
  8. "identities": [
  9. {
  10. "signInType": "emailAddress",
  11. "issuerAssignedId": "dennislaw@gmail.com"
  12. }
  13. ],
  14. "extension_timezone": "VET",
  15. "extension_locale": "en-IN",
  16. "extension_tenant": "Team1"
  17. },
  18. {
  19. "displayName": "Geroge West",
  20. "givenName": "Geroge",
  21. "surname": "West",
  22. "extension_user_type": "user",
  23. "identities": [
  24. {
  25. "signInType": "userName",
  26. "issuerAssignedId": "gwest"
  27. }
  28. ],
  29. "extension_timezone": "PST",
  30. "extension_locale": "en-GB",
  31. "extension_tenant": "Team2"
  32. },
  33. {
  34. "displayName": "Shaggy Nate",
  35. "givenName": "Shaggy",
  36. "surname": "Nate",
  37. "extension_user_type": "user",
  38. "identities": [
  39. {
  40. "signInType": "userName",
  41. "issuerAssignedId": "Shaggynatealpha"
  42. }
  43. ],
  44. "extension_timezone": "NST",
  45. "extension_locale": "en-AF",
  46. "extension_tenant": "Team1"
  47. }
  48. ]
  49. }

In the below JSON, I have a key extension_tenant which is like a team, so we have values like Team1, Team2, Team3...and so on

I want to know if there is a way I can break this JSON based on extension_tenant and store it in STRING based on extension_tenant, so it will look like this.

Suppose all with extension_tenant = Team1 will be stored in a separate STRING,

example :

  1. String Team1 = "
  2. {
  3. "users": [
  4. {
  5. "displayName": "Dennis Law",
  6. "givenName": "Dennis",
  7. "surname": "Law",
  8. "extension_user_type": "user",
  9. "identities": [
  10. {
  11. "signInType": "emailAddress",
  12. "issuerAssignedId": "dennislaw@gmail.com"
  13. }
  14. ],
  15. "extension_timezone": "VET",
  16. "extension_locale": "en-IN",
  17. "extension_tenant": "Team1"
  18. },
  19. {
  20. "displayName": "Shaggy Nate",
  21. "givenName": "Shaggy",
  22. "surname": "Nate",
  23. "extension_user_type": "user",
  24. "identities": [
  25. {
  26. "signInType": "userName",
  27. "issuerAssignedId": "Shaggynatealpha"
  28. }
  29. ],
  30. "extension_timezone": "NST",
  31. "extension_locale": "en-AF",
  32. "extension_tenant": "Team1"
  33. }
  34. ]
  35. } ";

and for all with extension_tenant as Team2

  1. String Team2 = "
  2. {
  3. "users": [
  4. {
  5. "displayName": "Geroge West",
  6. "givenName": "Geroge",
  7. "surname": "West",
  8. "extension_user_type": "user",
  9. "identities": [
  10. {
  11. "signInType": "userName",
  12. "issuerAssignedId": "gwest"
  13. }
  14. ],
  15. "extension_timezone": "PST",
  16. "extension_locale": "en-GB",
  17. "extension_tenant": "Team2"
  18. }
  19. ]
  20. } ";

I hope I was able to explain what I am trying to do, please suggest and approach, I am active on stackoverflow, so i will probably reply and work on suggestions immediately. I am also looking for ways to do it mean while.

答案1

得分: 1

以下是您提供的代码的翻译:

  1. 检查以下方法是否适用于您
  2. User.java
  3. package json;
  4. import java.util.List;
  5. import com.fasterxml.jackson.annotation.JsonProperty;
  6. public class User {
  7. @JsonProperty("displayName")
  8. private String displayName;
  9. @JsonProperty("givenName")
  10. private String givenName;
  11. @JsonProperty("surname")
  12. private String surname;
  13. @JsonProperty("extension_user_type")
  14. private String extension_user_type;
  15. @JsonProperty("identities")
  16. private List<Identity> identities;
  17. @JsonProperty("extension_timezone")
  18. private String extension_timezone;
  19. @JsonProperty("extension_locale")
  20. private String extension_locale;
  21. @JsonProperty("extension_tenant")
  22. private String extension_tenant;
  23. /**
  24. * @return the displayName
  25. */
  26. public String getDisplayName() {
  27. return displayName;
  28. }
  29. // ... (其他getter和setter方法)
  30. public String toString() {
  31. StringBuilder stringBuilder = new StringBuilder();
  32. stringBuilder.append('{');
  33. stringBuilder.append("\"displayName\":\"" + displayName + "\",");
  34. stringBuilder.append("\"givenName\":\"" + givenName + "\",");
  35. stringBuilder.append("\"surname\":\"" + surname + "\",");
  36. stringBuilder.append("\"extension_user_type\":\"" + extension_user_type + "\",");
  37. // ... (其他属性拼接)
  38. stringBuilder.append('}');
  39. return stringBuilder.toString();
  40. }
  41. }
  42. Identity.java
  43. package json;
  44. import com.fasterxml.jackson.annotation.JsonProperty;
  45. public class Identity {
  46. @JsonProperty("signInType")
  47. private String signInType;
  48. @JsonProperty("issuerAssignedId")
  49. private String issuerAssignedId;
  50. // ... (getter和setter方法)
  51. public String toString() {
  52. StringBuilder stringBuilder = new StringBuilder();
  53. stringBuilder.append('{');
  54. stringBuilder.append("\"signInType\":\"" + signInType + "\",");
  55. stringBuilder.append("\"issuerAssignedId\":\"" + issuerAssignedId + "\"");
  56. stringBuilder.append('}');
  57. return stringBuilder.toString();
  58. }
  59. }
  60. Users.java
  61. package json;
  62. import java.util.List;
  63. import com.fasterxml.jackson.annotation.JsonProperty;
  64. public class Users {
  65. @JsonProperty("users")
  66. List<User> users;
  67. // ... (getter和setter方法)
  68. public String toString() {
  69. StringBuilder stringBuilder = new StringBuilder();
  70. stringBuilder.append('{');
  71. if (users != null && users.size() > 0) {
  72. stringBuilder.append("\"users\":[");
  73. for (User user : users) {
  74. stringBuilder.append(user);
  75. }
  76. stringBuilder.append("]");
  77. }
  78. stringBuilder.append('}');
  79. return stringBuilder.toString();
  80. }
  81. }
  82. JSON存储到d:/test.json
  83. 在反序列化后extension_tenant属性上进行分组
  84. Converter.java
  85. package json;
  86. import java.io.FileInputStream;
  87. import java.io.IOException;
  88. import java.io.InputStream;
  89. import java.util.HashMap;
  90. import java.util.List;
  91. import java.util.Map;
  92. import java.util.Map.Entry;
  93. import com.fasterxml.jackson.core.JsonParseException;
  94. import com.fasterxml.jackson.databind.DeserializationFeature;
  95. import com.fasterxml.jackson.databind.JsonMappingException;
  96. import com.fasterxml.jackson.databind.ObjectMapper;
  97. public class Converter {
  98. public static void main(String[] args) {
  99. ObjectMapper mapper = new ObjectMapper();
  100. InputStream inputStream = null;
  101. mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
  102. false);
  103. Users users = null;
  104. try {
  105. inputStream = new FileInputStream("d:/testsep.json");
  106. // 获取Users对象
  107. users = mapper.readValue(inputStream, Users.class);
  108. StringBuilder stringBuilder = new StringBuilder();
  109. Map<String, String> groupByTenantmap = null;
  110. if (users != null) {
  111. // 检索User对象列表
  112. List<User> userList = users.getUsers();
  113. if (userList != null && userList.size() > 0) {
  114. groupByTenantmap = new HashMap<String, String>(
  115. userList.size());
  116. String extension_tenant = null;
  117. String value = null;
  118. for (User user : userList) {
  119. // 按extension_tenant进行分组
  120. extension_tenant = user.getExtension_tenant();
  121. if (groupByTenantmap.containsKey(extension_tenant)) {
  122. value = groupByTenantmap.get(extension_tenant);
  123. stringBuilder.append(value).append(',').append(user.toString());
  124. groupByTenantmap.put(extension_tenant, stringBuilder.toString());
  125. } else {
  126. groupByTenantmap.put(extension_tenant, user.toString());
  127. }
  128. stringBuilder.setLength(0);
  129. }
  130. // 遍历映射并创建所需的JSON结构
  131. for (Entry<String, String> entry : groupByTenantmap.entrySet()) {
  132. stringBuilder.setLength(0);
  133. stringBuilder.append("{").append("\"users\":").append("[");
  134. stringBuilder.append(entry.getValue()).append("]");
  135. stringBuilder.append("}");
  136. System.out.println("String " + entry.getKey() + "=\"" + stringBuilder.toString() + "\";");
  137. System.out.println();
  138. }
  139. }
  140. }
  141. } catch (JsonParseException e) {
  142. e.printStackTrace();
  143. } catch (JsonMappingException e) {
  144. e.printStackTrace();
  145. } catch (IOException e) {
  146. e.printStackTrace();
  147. } finally {
  148. if (inputStream != null) {
  149. try {
  150. inputStream.close();
  151. } catch (IOException e) {
  152. e.printStackTrace();
  153. }
  154. }
  155. }
  156. }
  157. }

输出:

  1. String Team2="{"users":[{"displayName":"Geroge West","givenName":"Geroge","surname":"West","extension_user_type":"user","identities": [{"signInType":"userName","issuerAssignedId":"gwest"}],"extension_timezone":"PST","extension_locale":"en-GB","extension_tenant":"Team2"}]}";
  2. String Team1="{"users":[{"displayName":"Dennis Law","givenName":"Dennis","surname":"Law","extension_user_type":"user","identities": [{"signInType":"emailAddress","issuerAssignedId":"dennislaw@gmail.com"}],"extension_timezone":"VET","extension_locale":"en-IN","extension_tenant":"Team1"},{"displayName":"Shaggy Nate","givenName":"Shaggy","surname":"Nate","extension_user_type":"user","identities": [{"signInType":"userName","issuerAssignedId":"Shaggynatealpha"}],"extension_timezone":"NST","extension_locale":"en-AF","extension_tenant":"Team1"}]}";

请注意,这是您提供的代码的直接翻译,代码中的注释和特定于变量命名的内容也得以保留。如果您需要进一步的解释或修改,请随时提问。

英文:

Check if following approach work for you

User.java

  1. package json;
  2. import java.util.List;
  3. import com.fasterxml.jackson.annotation.JsonProperty;
  4. public class User {
  5. @JsonProperty(&quot;displayName&quot;)
  6. private String displayName;
  7. @JsonProperty(&quot;givenName&quot;)
  8. private String givenName;
  9. @JsonProperty(&quot;surname&quot;)
  10. private String surname;
  11. @JsonProperty(&quot;extension_user_type&quot;)
  12. private String extension_user_type;
  13. @JsonProperty(&quot;identities&quot;)
  14. private List&lt;Identity&gt; identities;
  15. @JsonProperty(&quot;extension_timezone&quot;)
  16. private String extension_timezone;
  17. @JsonProperty(&quot;extension_locale&quot;)
  18. private String extension_locale;
  19. @JsonProperty(&quot;extension_tenant&quot;)
  20. private String extension_tenant;
  21. /**
  22. * @return the displayName
  23. */
  24. public String getDisplayName() {
  25. return displayName;
  26. }
  27. /**
  28. * @param displayName
  29. * the displayName to set
  30. */
  31. public void setDisplayName(String displayName) {
  32. this.displayName = displayName;
  33. }
  34. /**
  35. * @return the givenName
  36. */
  37. public String getGivenName() {
  38. return givenName;
  39. }
  40. /**
  41. * @param givenName
  42. * the givenName to set
  43. */
  44. public void setGivenName(String givenName) {
  45. this.givenName = givenName;
  46. }
  47. /**
  48. * @return the surname
  49. */
  50. public String getSurname() {
  51. return surname;
  52. }
  53. /**
  54. * @param surname
  55. * the surname to set
  56. */
  57. public void setSurname(String surname) {
  58. this.surname = surname;
  59. }
  60. /**
  61. * @return the extension_user_type
  62. */
  63. public String getExtension_user_type() {
  64. return extension_user_type;
  65. }
  66. /**
  67. * @param extension_user_type
  68. * the extension_user_type to set
  69. */
  70. public void setExtension_user_type(String extension_user_type) {
  71. this.extension_user_type = extension_user_type;
  72. }
  73. /**
  74. * @return the identities
  75. */
  76. public List&lt;Identity&gt; getIdentities() {
  77. return identities;
  78. }
  79. /**
  80. * @param identities
  81. * the identities to set
  82. */
  83. public void setIdentities(List&lt;Identity&gt; identities) {
  84. this.identities = identities;
  85. }
  86. /**
  87. * @return the extension_timezone
  88. */
  89. public String getExtension_timezone() {
  90. return extension_timezone;
  91. }
  92. /**
  93. * @param extension_timezone
  94. * the extension_timezone to set
  95. */
  96. public void setExtension_timezone(String extension_timezone) {
  97. this.extension_timezone = extension_timezone;
  98. }
  99. /**
  100. * @return the extension_locale
  101. */
  102. public String getExtension_locale() {
  103. return extension_locale;
  104. }
  105. /**
  106. * @param extension_locale
  107. * the extension_locale to set
  108. */
  109. public void setExtension_locale(String extension_locale) {
  110. this.extension_locale = extension_locale;
  111. }
  112. /**
  113. * @return the extension_tenant
  114. */
  115. public String getExtension_tenant() {
  116. return extension_tenant;
  117. }
  118. /**
  119. * @param extension_tenant
  120. * the extension_tenant to set
  121. */
  122. public void setExtension_tenant(String extension_tenant) {
  123. this.extension_tenant = extension_tenant;
  124. }
  125. public String toString() {
  126. StringBuilder stringBuilder = new StringBuilder();
  127. stringBuilder.append(&#39;{&#39;);
  128. stringBuilder.append(&quot;\&quot;displayName\&quot;:&quot; + &quot;\&quot;&quot; + displayName + &quot;\&quot;,&quot;);
  129. stringBuilder.append(&quot;\&quot;givenName\&quot;:&quot; + &quot;\&quot;&quot; + givenName + &quot;\&quot;,&quot;);
  130. stringBuilder.append(&quot;\&quot;surname\&quot;:&quot; + &quot;\&quot;&quot; + surname + &quot;\&quot;,&quot;);
  131. stringBuilder.append(&quot;\&quot;extension_user_type\&quot;:&quot; + &quot;\&quot;&quot;
  132. + extension_user_type + &quot;\&quot;,&quot;);
  133. if (identities != null &amp;&amp; identities.size() &gt; 0) {
  134. stringBuilder.append(&quot;\&quot;identities\&quot;: [&quot;);
  135. for (Identity identity : identities) {
  136. stringBuilder.append(identity);
  137. }
  138. stringBuilder.append(&quot;],&quot;);
  139. }
  140. stringBuilder.append(&quot;\&quot;extension_timezone\&quot;:&quot; + &quot;\&quot;&quot;
  141. + extension_timezone + &quot;\&quot;,&quot;);
  142. stringBuilder.append(&quot;\&quot;extension_locale\&quot;:&quot; + &quot;\&quot;&quot; + extension_locale
  143. + &quot;\&quot;,&quot;);
  144. stringBuilder.append(&quot;\&quot;extension_tenant\&quot;:&quot; + &quot;\&quot;&quot; + extension_tenant
  145. + &quot;\&quot;&quot;);
  146. stringBuilder.append(&#39;}&#39;);
  147. return stringBuilder.toString();
  148. }
  149. }

Identity.java

  1. package json;
  2. import com.fasterxml.jackson.annotation.JsonProperty;
  3. public class Identity {
  4. @JsonProperty(&quot;signInType&quot;)
  5. private String signInType;
  6. @JsonProperty(&quot;issuerAssignedId&quot;)
  7. private String issuerAssignedId;
  8. /**
  9. * @return the signInType
  10. */
  11. public String getSignInType() {
  12. return signInType;
  13. }
  14. /**
  15. * @param signInType
  16. * the signInType to set
  17. */
  18. public void setSignInType(String signInType) {
  19. this.signInType = signInType;
  20. }
  21. /**
  22. * @return the issuerAssignedId
  23. */
  24. public String getIssuerAssignedId() {
  25. return issuerAssignedId;
  26. }
  27. /**
  28. * @param issuerAssignedId
  29. * the issuerAssignedId to set
  30. */
  31. public void setIssuerAssignedId(String issuerAssignedId) {
  32. this.issuerAssignedId = issuerAssignedId;
  33. }
  34. public String toString() {
  35. StringBuilder stringBuilder = new StringBuilder();
  36. stringBuilder.append(&#39;{&#39;);
  37. stringBuilder.append(&quot;\&quot;signInType\&quot;:&quot; + &quot;\&quot;&quot; + signInType + &quot;\&quot;,&quot;);
  38. stringBuilder.append(&quot;\&quot;issuerAssignedId\&quot;:&quot; + &quot;\&quot;&quot; + issuerAssignedId
  39. + &quot;\&quot;&quot;);
  40. stringBuilder.append(&#39;}&#39;);
  41. return stringBuilder.toString();
  42. }
  43. }

Users.java

  1. package json;
  2. import java.util.List;
  3. import com.fasterxml.jackson.annotation.JsonProperty;
  4. public class Users {
  5. @JsonProperty(&quot;users&quot;)
  6. List&lt;User&gt; users;
  7. /**
  8. * @return the users
  9. */
  10. public List&lt;User&gt; getUsers() {
  11. return users;
  12. }
  13. /**
  14. * @param users
  15. * the users to set
  16. */
  17. public void setUsers(List&lt;User&gt; users) {
  18. this.users = users;
  19. }
  20. public String toString() {
  21. StringBuilder stringBuilder = new StringBuilder();
  22. stringBuilder.append(&#39;{&#39;);
  23. if (users != null &amp;&amp; users.size() &gt; 0) {
  24. stringBuilder.append(&quot;\&quot;users\&quot;: [&quot;);
  25. for (User user : users) {
  26. stringBuilder.append(user);
  27. }
  28. stringBuilder.append(&quot;]&quot;);
  29. }
  30. stringBuilder.append(&#39;}&#39;);
  31. return stringBuilder.toString();
  32. }
  33. }

Stored the json into d:/test.json

Post deserialization doing group by on extension_tenant attribute.

Converter.java

  1. package json;
  2. import java.io.FileInputStream;
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. import java.util.Map;
  8. import java.util.Map.Entry;
  9. import com.fasterxml.jackson.core.JsonParseException;
  10. import com.fasterxml.jackson.databind.DeserializationFeature;
  11. import com.fasterxml.jackson.databind.JsonMappingException;
  12. import com.fasterxml.jackson.databind.ObjectMapper;
  13. public class Converter {
  14. public static void main(String[] args) {
  15. ObjectMapper mapper = new ObjectMapper();
  16. InputStream inputStream = null;
  17. mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
  18. false);
  19. Users users = null;
  20. try {
  21. inputStream = new FileInputStream(&quot;d:/testsep.json&quot;);
  22. //Get Users object
  23. users = mapper.readValue(inputStream, Users.class);
  24. StringBuilder stringBuilder = new StringBuilder();
  25. Map&lt;String, String&gt; groupByTenantmap = null;
  26. if (users != null) {
  27. //retrieve list of User object
  28. List&lt;User&gt; userList = users.getUsers();
  29. if (userList != null &amp;&amp; userList.size() &gt; 0) {
  30. groupByTenantmap = new HashMap&lt;String, String&gt;(
  31. userList.size());
  32. String extension_tenant = null;
  33. String value = null;
  34. for (User user : userList) {
  35. //populate map group by extension_tenant
  36. extension_tenant = user.getExtension_tenant();
  37. if (groupByTenantmap.containsKey(extension_tenant)) {
  38. value = groupByTenantmap.get(extension_tenant);
  39. stringBuilder.append(value).append(&#39;,&#39;)
  40. .append(user.toString());
  41. groupByTenantmap.put(extension_tenant,
  42. stringBuilder.toString());
  43. } else {
  44. groupByTenantmap.put(extension_tenant,
  45. user.toString());
  46. }
  47. stringBuilder.setLength(0);
  48. }
  49. //iterate through map and create desired json structure
  50. for (Entry&lt;String, String&gt; entry : groupByTenantmap
  51. .entrySet()) {
  52. stringBuilder.setLength(0);
  53. stringBuilder.append(&quot;{&quot;).append(&quot;\&quot;users\&quot;:&quot;)
  54. .append(&quot;[&quot;);
  55. stringBuilder.append(entry.getValue()).append(&quot;]&quot;);
  56. stringBuilder.append(&quot;}&quot;);
  57. System.out.println(&quot;String &quot; + entry.getKey() + &quot;=\&quot;&quot;
  58. + stringBuilder.toString() + &quot;\&quot;;&quot;);
  59. System.out.println();
  60. }
  61. }
  62. }
  63. } catch (JsonParseException e) {
  64. e.printStackTrace();
  65. } catch (JsonMappingException e) {
  66. e.printStackTrace();
  67. } catch (IOException e) {
  68. e.printStackTrace();
  69. } finally {
  70. if (inputStream != null) {
  71. try {
  72. inputStream.close();
  73. } catch (IOException e) {
  74. e.printStackTrace();
  75. }
  76. }
  77. }
  78. }
  79. }

Output:

  1. String Team2=&quot;{&quot;users&quot;:[{&quot;displayName&quot;:&quot;Geroge West&quot;,&quot;givenName&quot;:&quot;Geroge&quot;,&quot;surname&quot;:&quot;West&quot;,&quot;extension_user_type&quot;:&quot;user&quot;,&quot;identities&quot;: [{&quot;signInType&quot;:&quot;userName&quot;,&quot;issuerAssignedId&quot;:&quot;gwest&quot;}],&quot;extension_timezone&quot;:&quot;PST&quot;,&quot;extension_locale&quot;:&quot;en-GB&quot;,&quot;extension_tenant&quot;:&quot;Team2&quot;}]}&quot;;
  2. String Team1=&quot;{&quot;users&quot;:[{&quot;displayName&quot;:&quot;Dennis Law&quot;,&quot;givenName&quot;:&quot;Dennis&quot;,&quot;surname&quot;:&quot;Law&quot;,&quot;extension_user_type&quot;:&quot;user&quot;,&quot;identities&quot;: [{&quot;signInType&quot;:&quot;emailAddress&quot;,&quot;issuerAssignedId&quot;:&quot;dennislaw@gmail.com&quot;}],&quot;extension_timezone&quot;:&quot;VET&quot;,&quot;extension_locale&quot;:&quot;en-IN&quot;,&quot;extension_tenant&quot;:&quot;Team1&quot;},{&quot;displayName&quot;:&quot;Shaggy Nate&quot;,&quot;givenName&quot;:&quot;Shaggy&quot;,&quot;surname&quot;:&quot;Nate&quot;,&quot;extension_user_type&quot;:&quot;user&quot;,&quot;identities&quot;: [{&quot;signInType&quot;:&quot;userName&quot;,&quot;issuerAssignedId&quot;:&quot;Shaggynatealpha&quot;}],&quot;extension_timezone&quot;:&quot;NST&quot;,&quot;extension_locale&quot;:&quot;en-AF&quot;,&quot;extension_tenant&quot;:&quot;Team1&quot;}]}&quot;;

huangapple
  • 本文由 发表于 2020年9月30日 23:08:44
  • 转载请务必保留本文链接:https://go.coder-hub.com/64140526.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定