GithubHelp home page GithubHelp logo

Comments (9)

AlexeyKosov avatar AlexeyKosov commented on July 25, 2024

The error can be fixed by changing

protected static function createPinnerRequestData($username)
{
    return [
        "options" => [
            "username_or_email" => $username,
        ],
        "context" => new \stdClass(),
    ];
}

to

protected static function createPinnerRequestData($username)
{
    return [
        "options" => [
            "username" => $username,
        ],
        "context" => new \stdClass(),
    ];
}

in PinnerHelper.php

from php-pinterest-bot.

seregazhuk avatar seregazhuk commented on July 25, 2024

@AlexeyKosov thank you for issue, fixed.

from php-pinterest-bot.

yashasvi12 avatar yashasvi12 commented on July 25, 2024

@AlexeyKosov and @seregazhuk Can i get the followers of the non authenticated user with this?

from php-pinterest-bot.

seregazhuk avatar seregazhuk commented on July 25, 2024

@yashasvi12 If you don't want to log in, just provide empty strings to constructor:

require 'vendor/autoload.php';

use seregazhuk\PinterestBot\PinterestBot;

$bot = new PinterestBot('', '');

foreach($bot->pinners->followers('username') as $followers)
{
    print_r($followers);
}

from php-pinterest-bot.

yashasvi12 avatar yashasvi12 commented on July 25, 2024

the api which will be created will be like this rite?
https://api.pinterest.com/v1/username/followers/?access_token=ACCESS_TOKEN

On Mon, Jan 11, 2016 at 3:55 PM, Sergey Zhuk [email protected]
wrote:

@yashasvi12 https://github.com/yashasvi12 If you don't want to log in,
just provide empty strings to constructor:

require 'vendor/autoload.php';use seregazhuk\PinterestBot\PinterestBot;$bot = new PinterestBot('', '');foreach($bot->pinners->followers('username') as $followers){ print_r($followers);}


Reply to this email directly or view it on GitHub
#10 (comment)
.

from php-pinterest-bot.

seregazhuk avatar seregazhuk commented on July 25, 2024

No, it works like your browser requests and does not require token.

from php-pinterest-bot.

yashasvi12 avatar yashasvi12 commented on July 25, 2024

i was actually using https://github.com/dirkgroenen/Pinterest-API-PHP
any idea how i can get the users followers with this???

On Mon, Jan 11, 2016 at 4:12 PM, Sergey Zhuk [email protected]
wrote:

No, it works like your browser requests and does not require token.


Reply to this email directly or view it on GitHub
#10 (comment)
.

from php-pinterest-bot.

seregazhuk avatar seregazhuk commented on July 25, 2024

No idea, ask the author of package.

from php-pinterest-bot.

yashasvi12 avatar yashasvi12 commented on July 25, 2024

thanks

from php-pinterest-bot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.