Laravel 5.2 - Mollie API - webhook无效

时间:2016-05-14 13:26:03

标签: php laravel webhooks mollie

我正在尝试在我的webapp上做某种类型的“高级”系统,但是我在处理付款方面遇到了麻烦。

我正在使用Mollie Api,我在github上找到THIS,将其整合到laravel中。

public function postMedium()
{
    $user_id = Auth::user()->id;
    $payment = Mollie::getPayments()->create([
        "amount"      => 9.99,
        "description" => "Foodtruck Bestellen Premium - 1 Month",
        "webhookUrl"  => "URL",
        "redirectUrl" => "URL",
        "metadata"    => array(
            'user_id' => $user_id
        )
    ]);
    return redirect($payment->links->paymentUrl);
}


public function mediumPaymentCheck(Request $request)
{
    $payment = Mollie::getPayments()->get(Input::get('id'));
    if ($payment->isPaid()) {

        $user_id = $payment->user_id;

        $user = User::find($user_id);

        $user->premium = true;
        $user->premium_type = "medium";
        $user->premium_expiry_date = Carbon::now()->addDays(30);

        $user->save();
    }
}

付款后,您将被重定向到redirectUrl并且可以正常工作。

...然而

我的数据库没有任何变化,因此我的webhook网址(“mediumPaymentCheck”)似乎被忽略或因某些原因无效。

我希望有人可以帮助我!

编辑:我的webhook网址如下所示:

Route::group(['middleware' => ['web']], function () {
Route::post('/premium/payment/medium/check', 'PremiumController@mediumPaymentCheck');

0 个答案:

没有答案