Viewing 15 replies - 1 through 15 (of 26 total)
  • Plugin Author paulhuisman

    (@phuisman)

    Hey there,

    Is there an API key displayed in the error message?

    Plugin Author paulhuisman

    (@phuisman)

    Please check these three things:

    1) Your User ID is correct – https://idgettr.com/
    2) Your API key is correct – https://www.flickr.com/services/apps/
    3) You have already added Flickr Sets to this account

    Thread Starter yesfree

    (@yesfree)

    1) Your User ID is correct – https://idgettr.com/

    If my ID should be the number that comes after the /photos of the url below, Then yes its correct.

    https://www.flickr.com/photos/1111@111/

    2) Your API key is correct

    Yes its correct check below.., Wait do you think i should turn the private to public,

    Key: 00000000000 – Hidden for some reasons
    Secret: 22222222222 – Hidden for some reasons
    1 authenticated user | 0 calls in the last 24 hours (stats)
    Private, Active

    3) You have already added Flickr Sets to this account

    If sets are the same as albums then i have 2 albums.

    Plugin Author paulhuisman

    (@phuisman)

    Is this the first time you use this plugin or has this occurred when upgrading to a new version? If so, which version?

    Thread Starter yesfree

    (@yesfree)

    Yes, This is the first time and i even downgraded to 1.0.8 it didn’t work, Now using the current version (1.1.0) But still not working.

    Plugin Author paulhuisman

    (@phuisman)

    My API Keys are Private as well, that shouldn’t be a problem.

    Are you using ACF 5?

    Can you send me a screenshot of your flickr field group settings? (you can block out api key etc)

    Plugin Author paulhuisman

    (@phuisman)

    Also in wp-config.php set:

    define('WP_DEBUG', false);

    Mayby that’ll give you some other errors.

    Plugin Author paulhuisman

    (@phuisman)

    Correction – of course i mean:

    define('WP_DEBUG', true);

    Thread Starter yesfree

    (@yesfree)

    Are you using ACF 5?

    No i use v4.4.4

    Can you send me a screenshot of your flickr field group settings? (you can block out api key etc)

    Screenshot

    Also in wp-config.php set:

    define(‘WP_DEBUG’, false);

    Is already set to false

    And thanks already for the effort being made to help me make this work, I appreciate it, Best plugin author support so far.

    Thread Starter yesfree

    (@yesfree)

    OK after setting the debug to true i get this on the header of admin page..

    Notice: The called constructor method for WP_Widget is deprecated since version 4.3.0! Use

    __construct()

    instead. in C:\xampp\htdocs\example\wp-includes\functions.php on line 3619

    A screenshot of how the field look like when i go to edit the page the field is added to, Every other field display and works fine.

    Plugin Author paulhuisman

    (@phuisman)

    That error has nothing to do with the flickr field problem as far as i know.

    Mhm i just tried ACF4.4.4 with WordPress 4.4 and everything works..

    So it must be within the api key/ user id.

    Could you
    var_dump($flickr_data);
    after row 413 of acf-flickr-v4.php and tell me what’s in it?

    Thread Starter yesfree

    (@yesfree)

    I got this…

    array(5) { [“page”]=> string(1) “1” [“pages”]=> float(0) [“perpage”]=> string(3) “100” [“total”]=> int(0) [“photoset”]=> array(0) { } }

    Plugin Author paulhuisman

    (@phuisman)

    Okay so you got an empty photoset array.. Which means the API key / User ID is fine.

    I’m assuming you just don’t have any public sets/albums available on your Flickr account.. Can you check that?

    Thread Starter yesfree

    (@yesfree)

    Wow……….I changed the pictures in the photostream to public view and it works now. By the sets and gallery dont work.

    Thread Starter yesfree

    (@yesfree)

    The code below doesnt output any image, Or i’m doing something wrong.

    $flickr_photostream = get_field(flickr_test);
    
    if (isset($flickr_photostream['items'])) {
        foreach ($flickr_photostream['items'] as $id => $photo) {
            echo '<a href="' . $photo['large'] . '" title="' . $photo['title'] . '"><img src="' . $photo['thumb'] . '" /></a>';
        }
    }
Viewing 15 replies - 1 through 15 (of 26 total)
  • The topic ‘There are no Flickr sets available for user ID 111@N11’ is closed to new replies.