Gregory Shein

Results 10 comments of Gregory Shein

Hey guys, same question here. There's of course a hack with hanging v-if="showSlider " on the slider and then watching for changing in swiper options. ``` swiperOptionsActive() { this.showSlider =...

@pbvillaflores I'm a little bit confused, why api_key is hardcoded in src/config.js? ![image](https://user-images.githubusercontent.com/13556916/63647021-29782300-c724-11e9-90a4-25b0bee0f678.png)

And it uses the same token when I do it in the browser ![2019-08-25_10h42_48](https://user-images.githubusercontent.com/13556916/63647089-1c0f6880-c725-11e9-88e0-ecb9a8fd3b2a.png)

I managed to get search results by quering https://www.airbnb.com/api/v2/explore_tabs instead of search_results, but it has really confusing structure

You can get search results if you query this for example: https://www.airbnb.com/api/v2/explore_tabs?api_key=d306zoyjsyarp7ifhu67rjxn52tv0t20&location=Paris But in the response, json structure is rather difficult to parse. So I'm not sure it's viable

ugh silly me, I missed driver key it should have been not ``` [ 'token' => $x, 'app_secret' => $y, 'verification'=> $z, ] ``` but ``` [ 'facebook' => 'token'...

But maybe it would make sense do give an example here? https://botman.io/2.0/driver-facebook-messenger ![image](https://user-images.githubusercontent.com/13556916/82399172-b7e4bf80-9a7e-11ea-84aa-6c9fb71e717a.png)

@aldnav I don't think this is your case, but I had such problem when I forgot to put ` $botman->listen();` at the end of the method. I also had a...