DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
We plan to modify the /jars/:jarid/run REST API by adding an applicationId field to both the request and response bodies. The values of jobId and applicationId in different cases are as follows:in the response body, allowing users to manage the corresponding application afterward. Currently, the API runs the user’s main method and returns a single job ID. To ensure full backward compatibility, this behavior will remain unchanged, and the newly added applicationId will simply mirror the job ID in the response.
Specified jobId
Specified applicationId
Actual jobId
Actual applicationId
✅
✅
specified jobId
specified applicationId
✅
❌
specified jobId
same as jobId
❌
✅
same as applicationId
specified applicationId
❌
❌
same as applicationId
randomly generated
/jars/:jarid/run | |
|---|---|
| Verb: POST | Response code: 200 OK |
| Submits an application by running a jar previously uploaded via '/jars/upload'. | |
Request { | |
Response { | |
...