GraphQL Log In and Connect

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
grath
Posts: 5
Joined: 29 Mar 2023, 22:21

GraphQL Log In and Connect

Post by grath » 19 May 2023, 21:53

There is a note in the documentation "You must be logged into the admin backend to use the GraphQL API!", but no mention of how to do this. What is the URL on a local host and how can I log in and connect?

Thanks for any reply.

php 8.1.19
laravel 2022
Linux Fedora

User avatar
aimeos
Administrator
Posts: 7865
Joined: 01 Jan 1970, 00:00

Re: GraphQL Log In and Connect

Post by aimeos » 20 May 2023, 08:24

There are different options possible and which one to use depends on what you want to do:
- Form-based login
- Lighthouse-PHP with own login mutation
- JSON Web Token
- Laravel Sanctum

By default, the GraphQL API is used in the admin backend and there, editors are already logged in using the Laravel login form. In the admin backend, the URL is available as data attribute in the HTML:
https://github.com/aimeos/ai-admin-jqad ... #L127-L128

The URL depends on your configuration but if unchanged, it's "/admin/{site}/graphql", i.e. for the "default site: "/admin/default/graphql":
https://github.com/aimeos/aimeos-larave ... op.php#L16
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

grath
Posts: 5
Joined: 29 Mar 2023, 22:21

Re: GraphQL Log In and Connect

Post by grath » 20 May 2023, 19:37

Thanks for your reply. I would like to connect from an external python application, mainly to access orders, and thought graphql or the json api would do that.

User avatar
aimeos
Administrator
Posts: 7865
Joined: 01 Jan 1970, 00:00

Re: GraphQL Log In and Connect

Post by aimeos » 21 May 2023, 07:59

In that case, Laravel Sanctum with API keys might be the easiest way.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply