LoginSignup
0
0

More than 5 years have passed since last update.

zendframework2のFlickrライブラリflickr.photos.searchのエラー対処

Posted at

zendframework2のFlickrメソッド
本家内の以下のメソッドを指定すると
今のままだとレスポンス400が返ってきて画像を取得することができません。
http://framework.zend.com/manual/current/en/modules/zendservice.flickr.html

$results = $flickr->tagSearch("php");

そこで以下が対処方法となります。
対象ファイル
ZendService->Flickr->Flickr.php

Flickr.php
const URI_BASE = 'https://wwww.flickr.com/services/rest/';

から

Flickr.php
const URI_BASE = 'https://api.flickr.com/services/rest/';
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0