Google Places Photo API
Laravel PHP アプリで次のように呼び出しています。
public static function getpic ($photoreference){
$app_id = 'XXXYYYZZZ';
$URLToCall = "https://maps.googleapis.com/maps/api/place/photo?maxwidth=225&photoreference=$photoreference&sensor=false&key=$app_id";
$result = file_get_contents($URLToCall);
return $result;
}
私が得たときprint_r $result
:
string(12902) "ÿØÿàJFIFÿá`ExifII*1&i‡.Picasa0220 á –ÿÛ„
返されたものを使用する方法がわかりません。文字列をビューに渡そうとしましたが、失敗しました。
なにか提案を?