推荐ChatGPT查询余额的PHP代码
以下是一个简单的 PHP 代码示例,可用于查询 ChatGPT 的余额:
<?php
// ChatGPT API URL
$url = 'https://api.chatgpt.com/v1/balance';
// Your ChatGPT API Key
$api_key = 'YOUR_API_KEY';
// Set up the request headers
$headers = array(
'Content-Type: application/json',
'Authorization: Bearer ' . $api_key
);
// Set up the request options
$options = array(
'http' => array(
'header' => implode("\r\n", $headers),
'method' => 'GET'
)
);
// Send the request and get the response
$response = file_get_contents($url, false, stream_context_create($options));
// Parse the response JSON
$data = json_decode($response, true);
// Check if the request was successful
if ($data['success']) {
// Print the balance
echo 'Your ChatGPT balance is: ' . $data['data']['balance'];
} else {
// Print the error message
echo 'Error: ' . $data['error']['message'];
}
?>
请注意,此代码仅用于演示目的,实际使用时需要替换 YOUR_API_KEY 为您自己的 ChatGPT API Key。此外,您还需要安装 PHP 的 json 扩展来解析 JSON 数据。
原文地址: https://www.cveoy.top/t/topic/bJPG 著作权归作者所有。请勿转载和采集!