saloon icon indicating copy to clipboard operation
saloon copied to clipboard

🤠 Build beautiful API integrations and SDKs with Saloon

Results 68 saloon issues
Sort by recently updated
recently updated
newest added

Reflects improved naming for better code readability and maintainability

I have a specific edge case I'm trying to address: Let's say I'm accessing an api that is somewhat slow with all the parameters I'm providing. But there's a way...

in the RequestException, exception message is set to limit only 200 characters. is there anyway to allow the message length more than that?

Hi! Laravel saloon does not send data to Sentry, although GuzzleSender is used. If we use HttpClient from Laravel, everything is sent instantly. Can you tell me what changes are...

It would be nice to more easily customize the handler stack used by `GuzzleSender`. V3 only gives us the option to `addMiddleware` but not to splice or remove them. One...

Two new functions have been added to check if the response return is json or xml

This PR adds methods in the `HasTries` trait to allow the retry options to be set dynamically (mainly when using resources) ```php $this->connector ->withRetry(tries: 3, intervalMilliseconds: 1000, exponentialBackoff: true, ,...

Hello everyone! I have been experimenting with this library, and had really positive expierences the past few days. The application I am working with has to fetch a lot of...

When testing end to end I might be hitting my own API which in turn sends to another API via background job or something. I don't have access to the...

I developed a middleware to log all my requests and responses: ```