-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for /json/new #4
Comments
Good idea. Do you know if there's any overview of the Chrome HTTP interface anywhere? |
Unfortunately: no idea. For me it was mostly digging through the chromium sources. The following quote is the best starting point for going down the rabbit hole I found (devtools_adb_bridge.cc):
|
Interesting, they got /close and /version too! More stuff to do :) Kenneth Auchenberg On Thu, Jan 30, 2014 at 11:13 AM, Jan Krems notifications@github.comwrote:
|
I was also trying to find that list, and the best I could do is this (updated link and colour coded) version of the code that implements the exposed methods http://code.woboq.org/qt5/qtwebengine/src/3rdparty/chromium/content/browser/devtools/devtools_http_handler_impl.cc.html#468 (@jkrems devtools_adb_bridge.cc file you linked is not working anymore) |
If we are updating this issue: https://github.com/buggerjs/bugger-daemon#api - this is my latest info, includes example response bodies/schemas. |
Thanks man! I haven't made any progress, but the plan is to spent more time on this adaptor the next coming months. |
Chrome supports the following:
I'd like to see this being a
<ANY>
(Chrome uses it internally asGET
but exposes it via any other http verb) so that it's future compatible with things like webdriver-like capability requests in aPOST
/PUT
body.Expected response is the same schema as one element in the
/json
-array.Example request:
The text was updated successfully, but these errors were encountered: