Hi,
It seems the room calendar call has a problem. Other calls requiring authentication seem to work fine, but when I'm testing the Host/Rooms/Availablilities -> List call in
https://www.roomorama.com/api/documentation/v1_0, it always returns 404.
Other way to reproduce this is:
$ curl -v -H "Authorization:Bearer $my_access_token" https://api.roomorama.com/v1.0/host/rooms/241546/availabilities.jsonof course $my_access_token is replaced with the actual access token. Response is:
* Adding handle: conn: 0x7f97db00ee00
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x7f97db00ee00) send_pipe: 1, recv_pipe: 0
* About to connect() to api.roomorama.com port 443 (#0)
* Trying 50.16.203.63...
* Connected to api.roomorama.com (50.16.203.63) port 443 (#0)
* TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
* Server certificate: www.roomorama.com
* Server certificate: Starfield Secure Certificate Authority - G2
* Server certificate: Starfield Root Certificate Authority - G2
* Server certificate: Starfield Class 2 Certification Authority
> GET /v1.0/host/rooms/241546/availabilities.json HTTP/1.1
> User-Agent: curl/7.30.0
> Host: api.roomorama.com
> Accept: */*
> Authorization:Bearer <auth token removed from here>
>
< HTTP/1.1 404 Not Found
< Cache-Control: no-cache, private
< Content-Type: text/html; charset=utf-8
< Date: Tue, 07 Oct 2014 23:44:33 GMT
* Server nginx/1.1.19 is not blacklisted
< Server: nginx/1.1.19
< Status: 404 Not Found
< Strict-Transport-Security: max-age=31536000
< Vary: Accept-Encoding
< X-Rack-Cache: miss
< X-RateLimit-Limit: 3600
< X-RateLimit-Remaining: 3576
< X-Request-Id: dfba6a397ca2358e6766941f7e5c2b67
< X-Runtime: 0.022343
< X-UA-Compatible: IE=Edge,chrome=1
< Content-Length: 1
< Connection: keep-alive
<I've tried with different properties and dates but consistently got the 404 response.
Could you advise, please?