public string GetWebRequestStringBearer(string postUrl, string paramData, Encoding dataEncode) { string ret = string.Empty; try { //byte[] byteArray = dataEncode.GetBytes(par 继续阅读
Search Results for: Bearer
查询到最新的3条
ChatGPT OpenAPI 接入
请注意,在实际使用中,需要使用 API 密钥,并根据 API 文档中的信息调用正确的端点和参数。 基础信息 Base URL: https://api.chatgpt.com/v1/认证方式: API Key 认证信息 您需要在 API 请求中包含您的 API 密钥以进行身份验证。 请求头(Headers): Authorization: Bearer YOUR_API_KEY 端点列表 客户服务端点 继续阅读
国内不翻墙调用chatgpt api
openai开放的api接口调用很简单,只要用post请求就可以了。但是因为地区限制,国内无法直接使用这个方法。 curl https://api.openai.com/v1/chat/completions \-H "Content-Type: application/json" \-H "Authorization: Bearer **" \-d '{"model": "gpt-3.5-tur 继续阅读