@nilan there are several ways you can access your data:
By enabling Guest access to the Post table. Go to Settings > Roles > Guest and enable Read permission for the Post table, as shown on the image below. Please keep in mind that this will open your Post data to the world - anyone with the endpoint URL can access it.
By generating an API token. First, create a new Role in Settings > Roles and give it access to read Posts. Next, create a new API token in Settings > API Tokens and choose the role you just created. When making a request add Authorization header and set its value to "Bearer YOUR_API_TOKEN". You can see examples here.
By implementing authentication flow in your front-end app. You can read docs on how to implement authentication if your React app here.
Hello, I’ve used all advices, but when I sign up (userSignUpWithPassword) it gives me {“message”:“Missing Authentication Token”}, when sign in it gives invalid request, can you help me?