api-platform / create-client

Generate React or Vue.js-based Progressive Web Apps from an Hydra-enabled API. Also support React Native.
https://api-platform.com/docs/client-generator/
MIT License
369 stars 132 forks source link

React Generator - api problem - authorization #370

Open AdrianKielbasa opened 10 months ago

AdrianKielbasa commented 10 months ago

https://api-platform.com/docs/create-client/react/

Request: https://demo.api-platform.com/admin/books

Error: Full authentication is required to access this resource.

Screenshot 2023-10-18 112629

AdrianKielbasa commented 10 months ago

How can I authorize a request? Is this in the documentation somewhere?

metaclass-nl commented 10 months ago

I guess the options are shown by the create-client program help:

    .option("--username [username]", "Username for basic auth (Hydra only)")
    .option("--password [password]", "Password for basic auth (Hydra only)")
    .option("--bearer [bearer]", "Token for bearer auth (Hydra only)")

code from https://github.com/api-platform/create-client/blob/main/src/index.js

AdrianKielbasa commented 10 months ago

@metaclass-nl I run command: npm init @api-platform/client https://demo.api-platform.com src/ -- --generator react --resource book --username chuck.norris@example.com --password Pa55w0rd

It still doesn't work

metaclass-nl commented 10 months ago

Branch chapter9-react of My own tutorial Api Platform does include instructions to generate code from an api that requires authentication but that is the api from the api branches of the tutorial itself and it also assumes you already have completed chapter 7 (authentication) *,

I do not know if they will work with the demo. My tutorial does not use the demo so i do no longer follow its developments. Sorry!

* You are advised anyway to start with chapter 1 and work your way up, unless you are familiar with the knowledge explained in the earlyer chapters.