mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 10:17:50 +08:00
Merge pull request #117 from LChernigovskaya/hub_token
Updated plugin upload documentation
This commit is contained in:
commit
827a0e60bc
BIN
plugin_repository/api/img/hub_token.png
Normal file
BIN
plugin_repository/api/img/hub_token.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
@ -4,29 +4,30 @@ title: Upload Plugin API
|
||||
|
||||
Please note that maximum allowed plugin size is *200 MB*.
|
||||
|
||||
You should create a [**hubPermanentToken**](https://www.jetbrains.com/help/hub/Manage-Permanent-Tokens.html) and specify Plugin Repository in Scope.
|
||||
|
||||
Parameters:
|
||||

|
||||
|
||||
Other parameters:
|
||||
|
||||
* **userName** is a plugin author username used to access the [JetBrains Plugin Repository](https://plugins.jetbrains.com) ([JetBrains Account](https://account.jetbrains.com) username or email).
|
||||
* **password** is a plugin author password used to access the [JetBrains Plugin Repository](https://plugins.jetbrains.com) ([JetBrains Account](https://account.jetbrains.com) password).
|
||||
* **pluginId** is a numeric ID of the plugin, can be retrieved from the plugin repository URL. e.g. [Scala](https://plugins.jetbrains.com/plugin/1347-scala) plugin ID is *1347*. (*pluginXmlId* can be used instead)
|
||||
* **pluginXmlId** is an unique identifier of the plugin specified as <id> in plugin.xml. Can be found as a *Plugin XML ID* parameter on the right of the plugin's individual update page and in the plugin.xml. (*pluginId* can be used instead)
|
||||
* **channel** is a release channel the update is published to (empty channel means default *Stable* channel) (optional)
|
||||
|
||||
## POST
|
||||
**Using pluginId**
|
||||
|
||||
**Using pluginId**
|
||||
|
||||
Provide file as file contents. Curl command template:
|
||||
|
||||
```
|
||||
curl -i -F userName=<userName> -F password=<password> -F pluginId=<pluginId> -F file=@<path to plugin .jar/.zip file> -F channel=<channel> https://plugins.jetbrains.com/plugin/uploadPlugin
|
||||
curl -i --header "Authorization: Bearer <hubPermanentToken>" -F pluginId=<pluginId> -F file=@<path to plugin .jar/.zip file> -F channel=<channel> https://plugins.jetbrains.com/plugin/uploadPlugin
|
||||
```
|
||||
|
||||
Curl command example:
|
||||
|
||||
```
|
||||
curl -i -F userName=pluginrobot -F password=123456 -F pluginId=5047 -F file=@Go-0.11.1197.zip -F channel=nightly https://plugins.jetbrains.com/plugin/uploadPlugin
|
||||
curl -i --header "Authorization: Bearer perm:qwertyasdfghzxcvb" -F pluginId=5047 -F file=@Go-0.11.1197.zip -F channel=nightly https://plugins.jetbrains.com/plugin/uploadPlugin
|
||||
```
|
||||
|
||||
**Using pluginXmlId**
|
||||
@ -34,11 +35,11 @@ curl -i -F userName=pluginrobot -F password=123456 -F pluginId=5047 -F file=@Go-
|
||||
Provide file as file contents. Curl command template:
|
||||
|
||||
```
|
||||
curl -i -F userName=<userName> -F password=<password> -F xmlId=<pluginXmlId> -F file=@<path to plugin .jar/.zip file> -F channel=<channel> https://plugins.jetbrains.com/plugin/uploadPlugin
|
||||
curl -i --header "Authorization: Bearer <hubPermanentToken>" -F xmlId=<pluginXmlId> -F file=@<path to plugin .jar/.zip file> -F channel=<channel> https://plugins.jetbrains.com/plugin/uploadPlugin
|
||||
```
|
||||
|
||||
Curl command example:
|
||||
|
||||
```
|
||||
curl -i -F userName=pluginrobot -F password=123456 -F xmlId=ro.redeul.google.go -F file=@Go-0.11.1197.zip -F channel=nightly https://plugins.jetbrains.com/plugin/uploadPlugin
|
||||
curl -i --header "Authorization: Bearer perm:qwertyasdfghzxcvb" -F xmlId=ro.redeul.google.go -F file=@Go-0.11.1197.zip -F channel=nightly https://plugins.jetbrains.com/plugin/uploadPlugin
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user