Blocked CORS-Request from a file that has the needed headers?

Image from Dev-Tools that shows the issue

I’m trying to have a game I’ve made access an API that I don’t want exposed so I’m trying to request it from “proxy.php” but it keeps on getting blocked. This is the code in the .php file:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code><?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
ini_set('log_errors', 1);
ini_set('error_log', 'php_errors.log');
function logMessage($message) {
error_log(date('[Y-m-d H:i:s] ') . $message . PHP_EOL, 3, 'php_errors.log');
}
logMessage("Script started");
// CORS headers
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
header("Access-Control-Allow-Headers: Content-Type, Authorization, X-Requested-With");
// Handle preflight requests
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
logMessage("Preflight request received");
header("Access-Control-Allow-Origin: *");
header("HTTP/1.1 204 No Content");
exit;
}
header("Content-Type: application/json");
logMessage("Received a request");
$apiKey = '***********';
$inputData = file_get_contents('php://input');
logMessage("Received input: " . $inputData);
$data = json_decode($inputData, true);
$prompt = $data['prompt'] ?? null;
if (!$prompt) {
logMessage("Error: No prompt received");
echo json_encode(['error' => 'No prompt received']);
exit;
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.openai.com/v1/chat/completions");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
"model" => "gpt-3.5-turbo",
"messages" => [["role" => "user", "content" => $prompt]],
"temperature" => 0.7
]));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer $apiKey",
"Content-Type: application/json"
]);
logMessage("Sending request to OpenAI API");
$response = curl_exec($ch);
if(curl_errno($ch)) {
logMessage("Curl error: " . curl_error($ch));
echo json_encode(['error' => 'Curl error: ' . curl_error($ch)]);
} else {
logMessage("Received response from API");
logMessage("Response: " . $response);
echo $response;
}
curl_close($ch);
logMessage("Script ended");
?>
</code>
<code><?php error_reporting(E_ALL); ini_set('display_errors', 1); ini_set('log_errors', 1); ini_set('error_log', 'php_errors.log'); function logMessage($message) { error_log(date('[Y-m-d H:i:s] ') . $message . PHP_EOL, 3, 'php_errors.log'); } logMessage("Script started"); // CORS headers header("Access-Control-Allow-Origin: *"); header("Access-Control-Allow-Methods: GET, POST, OPTIONS"); header("Access-Control-Allow-Headers: Content-Type, Authorization, X-Requested-With"); // Handle preflight requests if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') { logMessage("Preflight request received"); header("Access-Control-Allow-Origin: *"); header("HTTP/1.1 204 No Content"); exit; } header("Content-Type: application/json"); logMessage("Received a request"); $apiKey = '***********'; $inputData = file_get_contents('php://input'); logMessage("Received input: " . $inputData); $data = json_decode($inputData, true); $prompt = $data['prompt'] ?? null; if (!$prompt) { logMessage("Error: No prompt received"); echo json_encode(['error' => 'No prompt received']); exit; } $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://api.openai.com/v1/chat/completions"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([ "model" => "gpt-3.5-turbo", "messages" => [["role" => "user", "content" => $prompt]], "temperature" => 0.7 ])); curl_setopt($ch, CURLOPT_HTTPHEADER, [ "Authorization: Bearer $apiKey", "Content-Type: application/json" ]); logMessage("Sending request to OpenAI API"); $response = curl_exec($ch); if(curl_errno($ch)) { logMessage("Curl error: " . curl_error($ch)); echo json_encode(['error' => 'Curl error: ' . curl_error($ch)]); } else { logMessage("Received response from API"); logMessage("Response: " . $response); echo $response; } curl_close($ch); logMessage("Script ended"); ?> </code>
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
ini_set('log_errors', 1);
ini_set('error_log', 'php_errors.log');

function logMessage($message) {
    error_log(date('[Y-m-d H:i:s] ') . $message . PHP_EOL, 3, 'php_errors.log');
}

logMessage("Script started");

// CORS headers
header("Access-Control-Allow-Origin: *"); 
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
header("Access-Control-Allow-Headers: Content-Type, Authorization, X-Requested-With");

// Handle preflight requests
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
    logMessage("Preflight request received");
    header("Access-Control-Allow-Origin: *"); 
    header("HTTP/1.1 204 No Content");
    exit;
}

header("Content-Type: application/json");

logMessage("Received a request");

$apiKey = '***********';

$inputData = file_get_contents('php://input');
logMessage("Received input: " . $inputData);

$data = json_decode($inputData, true);
$prompt = $data['prompt'] ?? null;

if (!$prompt) {
    logMessage("Error: No prompt received");
    echo json_encode(['error' => 'No prompt received']);
    exit;
}

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://api.openai.com/v1/chat/completions");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
    "model" => "gpt-3.5-turbo",
    "messages" => [["role" => "user", "content" => $prompt]],
    "temperature" => 0.7
]));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    "Authorization: Bearer $apiKey",
    "Content-Type: application/json"
]);

logMessage("Sending request to OpenAI API");
$response = curl_exec($ch);

if(curl_errno($ch)) {
    logMessage("Curl error: " . curl_error($ch));
    echo json_encode(['error' => 'Curl error: ' . curl_error($ch)]);
} else {
    logMessage("Received response from API");
    logMessage("Response: " . $response);
    echo $response;
}

curl_close($ch);
logMessage("Script ended");
?>

Can anyone see what may cause the the block?

When I try to access the file via www.domain.com/proxy.php – I can see activity in the log file. However when I try to run the game and have it call the file then there isn’t even any activity..

Thanks!

I’ve been trying to implement the needed Headers that the error message says is missing. I have done so to the ebst of my abilitys but it keeps on claiming that there are headers missing..

The proxy has the correct permissions and is readable and executable. I’m hosting on freehosting.com.

New contributor

alexgilseg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật