Marty
Marty
What version of Laravel are you using?
Looks like Laravel updated this interface back in 5.4 and 5.24. You can try updating your Laravel project to 5.24 or try version 2.3.1 of this library.
Hm... real hard to deal with these backwards compatibility issues. What is the exact Laravel version you are using?
Maybe try 2.36?
`unsupported_grant_type` is actually a Salesforce response, so that's a good sign. Could you share what you have configured?
Possible it might have to do with the login url you are using: https://salesforce.stackexchange.com/questions/223205/sfdx-grant-type-not-supported
Callback URI is what endpoint Salesforce is supposed to send the response. For instance, it will probably be `localhost:8080/callback` or similar for local development
The resource repo is just a cache of this request: `Forrest::resources();` which tells the app which REST APIs it has access to. More info here: https://github.com/omniphx/forrest#api-requests After storing "resources", the...
I would test the `Forrest::resources();` in your sandbox environment. If it returns results, then my guess is that something is happening in your Session/Cache settings. Does this happen all the...
@Valkyrurr, this package implements both Session/Cache storage options (which can be configured in Laravel to use a database driver). You can also create your own storage implementation and injected it...