我正在尝试通过我的laravel应用程序将照片上传到Facebook。我有一些问题。
我使用dd($ _ FILES)上传了照片和获得的图片属性,结果是
array:1 [
"file" => array:5 [
"name" => "shailene_woodley_divergent-wide.jpg"
"type" => "image/jpeg"
"tmp_name" => "/private/var/folders/b0/l7j5d8tj2ynflwt8srr5lywm0000gn/T/phpxHoc6s"
"error" => 0
"size" => 573957
]
]
我的控制器是
try {
$response = $this->fb->post('/me/photos',
array(
'source' => ?????????,
'caption' => 'nothing',
'published' => 'false'
)
);
请告诉我在源字段中需要添加的照片值。
感谢