Code Monkey home page Code Monkey logo

fastspring-php's People

Contributors

emileperron avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

fastspring-php's Issues

Exception on orders not found

I recently came across this and started testing it for a new project. Thank you for making it available.

I am not 100% sure if this is intentional but if you lookup an order that does NOT exists an exception is thrown instead of a graceful error of an entry not found.

For instance, here is a test on an order I know doesn't exists:

Error 400 reported by FastSpring's API for your GET request to the \"orders\" endpoint. Response: \"{\\\"orders\\\":[{\\\"action\\\":\\\"order.get\\\",\\\"order\\\":\\\"someorderid\\\",\\\"result\\\":\\\"error\\\",\\\"error\\\":{\\\"order\\\":\\\"Not found\\\"}}]}\"

As you can see, FS does respond with an expected Order Not Found message but the wrapper instead of relaying that message over gracefully throws an exception. I understand it may not be a common scenario to try and fetch data for an invalid order but I came across that while testing and though I would submit feedback.

Not sure if considered an improvement or not but I would have liked to get an error message or error code instead that I could manage in order to control the end user output (this might be a bit too specific to how I am trying to implement your wrapper).

Cheers.

Update: a quick workaround for this is to catch the exception like so. You can get fancy with some logic to identify the error response and provide more meaningful output based on it. In the example below all failures will return 400. This is using Code Igniter but is applicable to any other PHP framework.

try {
    $response = FastSpring::get('orders', ['someorderid']);
} catch (\Exception $e) {
    return $this->fail($e->getMessage(), 400);
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.