keiono / cy-rest

This site is obsolete! Please use the link here:
http://github.com/idekerlab/cyREST
MIT License
4 stars 1 forks source link

Wrong URL in docs for getting the groups of a node #40

Closed jbethune closed 3 years ago

jbethune commented 10 years ago

Docs URL: http://keiono.github.io/cy-rest/#-875567376 REST URL: v1/networks/networkId/groups/nodeSUID

This always seem to produce a HTTP 404 response.

My curl request:

curl -X GET -v http://localhost:1234/v1/networks/80/groups/90                                                       22:36:25
* Hostname was NOT found in DNS cache
*   Trying ::1...
* connect to ::1 port 1234 failed: Verbindungsaufbau abgelehnt
*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 1234 (#0)
> GET /v1/networks/80/groups/90 HTTP/1.1
> User-Agent: curl/7.38.0
> Host: localhost:1234
> Accept: */*
> 
< HTTP/1.1 404 Not Found
< Date: Sun, 19 Oct 2014 20:45:58 GMT
< Content-Length: 0
< 
* Connection #0 to host localhost left intact

And I double-checked that network 80 and node 90 (within network 80) do exist.