We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Im using laravel and run from localhost and works... But when my project uoloaded to share hosting i got error Class 'Unirest\Request\Body' not found
The text was updated successfully, but these errors were encountered:
If you're using the full namespace then it is good you preceded the namespace with a backslash I.e
\Unirest\Request\Body::anyMethod();
Or rather define the Body class by namespace at the top of the file hence you can use the class explicitly
use Unirest\Request\Body;
Sorry, something went wrong.
Also make sure you have it installed.
is this Class still maintained. Last commit was in 2017 ?
Also this class seems more tailored for making REST requests, how good is using it as a HTTP client ?
AnyOne tried forking and upgrading this Class ?
No branches or pull requests
Im using laravel and run from localhost and works... But when my project uoloaded to share hosting i got error Class 'Unirest\Request\Body' not found
The text was updated successfully, but these errors were encountered: