我正在开发一个Spring Boot Web应用程序,该应用程序需要从第3方Web应用程序访问资源。我正在尝试了解Oauth2的工作。第三方网络应用使用Oauth2授予客户端资源访问权限。来自第三方网络应用程序的文档说要以以下所述的格式发送带有请求参数的POST。
用户名= <###>&password = <###>&client_id = <###>&client_secret = <###>&grant_type = password&hcode = <###>
hcode值根据文档是固定的。 我能够编写一个Java代码,成功获取我的访问令牌(感谢Google搜索!)。 以下是我的问题...
PS:我是Web应用程序开发的新手。我指的是下面的帖子,以了解Oauth2。 [https://www.javainuse.com/spring/spring-boot-oauth-introduction]
#include <stdio.h>
int main() {
int total_people, i;
char name[total_people][20];
scanf("%d", &total_people);
for(i = 0; i < total_people; i++) {
scanf("%[^\n]", name[i][0]);
}
for(i = 0; i < total_people; i++) {
printf("%s", name[i][0]);
}
return 0;
}