Looks like they've been having some issues, could be related.. https://twitter.com/stripestatus
Sep 3, 2015
4
Level 4
Slow Stripe API response time
I am using Laravel 5.0 and Laravel cashier ~5.0. I am having incredibly long response times from the Stripe API. I am running on a AWS EC2 in US EAST datacenter currently with 1GB RAM. The server has been setup by Forge with no HHVM. There is currently no SSL installed but we will be getting one before we go public.
Trace from New Relic: http://i.imgur.com/TtMB8Ff.png Call to api.stripe.com taking 2980ms.
Store card method
public function storeCard(Request $request)
{
$group = Group::find(Auth::user()->group_id);
$group->subscription('customer_month')->create($request->input('stripeToken'));
}
I am just wondering if this is due to a poor implementation by myself, or normal? Its my first time using the Stripe API.
Please or to participate in this conversation.