3 Star 1 Fork 3

marich777/第四组项目代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
token.c 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
joysuff 提交于 2024-07-04 14:44 . 使用百度云api实现语音识别
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <curl/curl.h>
#include <cjson/cJSON.h>
#include "http.h"
#include "config.h"
#include "token.h"
//成功返回access token,失败返回NULL
char *get_access_token(const char *ak, const char *sk)
{
char* token = NULL;
//设置URL
char* url = "https://aip.baidubce.com/oauth/2.0/token";
char* form = NULL;
asprintf(&form, "grant_type=client_credentials&client_id=%s&client_secret=%s&", ak, sk);
//发送请求报文
size_t size = strlen(form);
char* response = post(url, NULL, form, &size);
free(form);
if (!response)
{
return NULL;
}
//解析响应报文
cJSON* root = cJSON_ParseWithLength(response, size);
free(response);
if (!root)
{
// 解析错误
const char *error_ptr = cJSON_GetErrorPtr();
if (error_ptr != NULL)
{
fprintf(stderr, "Error before: %s\n", error_ptr);
}
return NULL;
}
cJSON* access_token = cJSON_GetObjectItem(root, "access_token");
if (!access_token)
{
fprintf(stderr, "access_token attribute not found\n");
cJSON_Delete(root);
return NULL;
}
if (!cJSON_IsString(access_token))
{
fprintf(stderr, "access_token attribute format error\n");
cJSON_Delete(root);
return NULL;
}
token = strdup(access_token->valuestring);
// 删除解析后对象占用的内存
cJSON_Delete(root);
return token;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/marich777/work.git
git@gitee.com:marich777/work.git
marich777
work
第四组项目代码
master

搜索帮助