Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

postman - Gotowebinar webhook creation 400 bad request Invalid callbackUrl

I'm trying to create a GotoWebinar webhook but I'm getting 400 bad requests each time

this is my callBackUrl function

Route::get('g2w/webhook', function(Request $request) {
  return response()->json([
        'success'=>true
  ],200);
});

this is my post webhook creation request to https://api.getgo.com/G2W/rest/v2/webhooks

[
    {
     "callbackUrl":"https://website.com/g2w/webhook/",
     "eventName":"webinar.created",
     "eventVersion":"1.0.0",
     "product":"g2w"
    }
]

and always I get this error

{
    "timestamp": 1609341614915,
    "status": 400,
    "error": "Bad Request",
    "exception": "com.logmein.webhooks.exceptions.InvalidRequestException",
    "message": "Invalid callbackUrl. callbackUrl not returning 200 OK as response. Please retry after sometime",
    "path": "/v1/webhooks"
}

GotoWebinar webhooks documentation

Thanks for helping


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...