Giter VIP home page Giter VIP logo

Comments (3)

ceefour avatar ceefour commented on July 28, 2024 3

For Bearer access token, this works for me:

    $client = \Softonic\GraphQL\ClientBuilder::build(
      'https://realm.mongodb.com/api/client/v2.0/app/MY_APP_ID/graphql',
			[
				'headers' => ['Authorization' => "Bearer $access_token"]
			]
    );

from graphql-client.

Zeshan316 avatar Zeshan316 commented on July 28, 2024

I have figure out with headers but getting resulted in a 403 Forbidden response.
Can you please help for this issue.

from graphql-client.

rccrdpccl avatar rccrdpccl commented on July 28, 2024

Hi @Zeshan316 . If you get a 403 it probably means you are not sending the correct request, however how to do this would depend on the authentication system your target server is using.

The library provides a basic builder method for building the GraphQL client: $client = Softonic\GraphQL\ClientBuilder::build($endpoint, $guzzleOptions);
For example, in case your server is using basic auth, you could set guzzleOptions in a similar fashion to this: $guzzleOptions = ['auth' => ['username', 'password']]

However if your server is using oauth2, the library implements a builder method to which you would need to only pass the oauth provider. There is an example in the README (https://github.com/softonic/graphql-client#documentation) and you can find more info about existing oauth providers implementing the OAuth2Provider interface at https://github.com/thephpleague/oauth2-client/blob/master/docs/providers/thirdparty.md .

from graphql-client.

Related Issues (19)

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.