我已经在 Dreamfactory 的文件夹中上传了图像文件
<img src="https://motodev.spotya.online/api/v2/files/Posts/posts_1508937621_Tulips.jpg">
显示错误,
{"error":{"code":400,"context":null,"message":"请求中未检测到会话令牌 (JWT) 或 API Key.."}
我已经在 Dreamfactory 的文件夹中上传了图像文件
<img src="https://motodev.spotya.online/api/v2/files/Posts/posts_1508937621_Tulips.jpg">
显示错误,
{"error":{"code":400,"context":null,"message":"请求中未检测到会话令牌 (JWT) 或 API Key.."}
看起来您files
在dreamfactory 中的端点是安全的。您需要提供 API 密钥或 JWT 令牌才能访问此目录中的文件。另一种方法是向您的files
端点添加访客访问权限,如此处所述。
您需要生成 url 之类的https://example.org/api/v2/files/image.jpg?api_key=<your api key>
。例如:
<?php
// your guest API key
$apiKey = 'your api key should be here';
// your file URL
$baseUrl = 'https://example.org/api/v2/files/image.jpg';
// resulted URL
$finalUrl = $baseUrl . http_build_query(['api_key' => $apiKey]);
?>
<img src="<?= $finalUrl ?>">