Git Product home page Git Product logo

Comments (5)

bencorlett avatar bencorlett commented on July 20, 2024

So what you're talking about effectively is a generic way to interact with OAuth 1 providers?

If that's the case, I would strongly recommend using guzzle/guzzle with the guzzle/oauth-subscriber plugin/addon/subscriber. I use this myself in apps for making requests against Twitter, and use the OAuth 1 client for the logic of logging in. We @philsturgeon, @alexbilbie and I, when discussing the OAuth clients, had plans for keeping it lightweight and targeted at OAuth-only. @philsturgeon was actually planning on building a Twitter API client but that was abandoned.

Maybe they can weigh in here. I'm happy to take the package in the direction the community needs as well.

from oauth1-client.

stevenmaguire avatar stevenmaguire commented on July 20, 2024

Yeah. Guzzle is a good idea. I will take a look at that as a course of research into the project inspiring the question.

from oauth1-client.

shadowhand avatar shadowhand commented on July 20, 2024

@bencorlett could you provide an example of how this works?

from oauth1-client.

shadowhand avatar shadowhand commented on July 20, 2024

I think #18 will go a long way towards resolving this. With that patch applied, I was able to create a trait with these methods:

public function post($url, array $body = [])
{
    $credentials = $this->getCredentials($this->getToken());
    $headers  = $this->client->getHeaders($credentials, 'POST', $url, $body);
    $request  = $this->client->createHttpClient()->post($url, $headers, $body)->send();
    $response = $request->getBody();
    return json_decode($response);
}

protected function getCredentials(array $token)
{
    $credentials = new TokenCredentials;
    $credentials->setIdentifier($token['identifier']);
    $credentials->setSecret($token['secret']);
    return $credentials;
}

I greatly prefer this to having to use the oauth-subscriber plugin, as it duplicates much of what oauth1-client already does.

from oauth1-client.

stevenmaguire avatar stevenmaguire commented on July 20, 2024

The project that inspired the original post is now using Guzzle and the OAuth1 Subscriber plugin.

For the record, I like the PR @shadowhand is proposing. Since there is a request open, I will close this issue.

from oauth1-client.

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.