Here I'm trying to upload a plugin to JIRA cloud
Goal is: if any events are created or resolved or it may be JIRA release, my json should receive that and trigger the mail to the users.
I created json and xml file as in tutorials:https://developer.atlassian.com/static/connect/docs/latest/guides/migrating-from-xml-to-json-descriptor.html
atlassian-connect.json
{
"name": "PlugIn",
"description": "Atlassian Connect add-on",
"key": "plug-in1",
"baseUrl": "https://3a48dc0a.ngrok.io",
"vendor": {
"name": "My Organization, Inc",
"url": "https://developer.atlassian.com"
},
"authentication": {
"type": "none"
},
"apiVersion": 1,
"modules": {
"webhooks": [
{
"event": "jira:issue_created",
"url": "/issue-created"
},
{
"event": "jira:issue_updated",
"url": "/issue-updated"
}
]
}
}
atlassian-plugin.xml
<?xml version="1.0" ?>
<atlassian-plugin key="plug-in1" name="PlugIn" plugins-version="2">
<plugin-info>
<description>Atlassian Connect add-on</description>
<version>1</version>
<vendor name="My Organization, Inc" url="https://developer.atlassian.com" />
</plugin-info>
<remote-plugin-container key="container" display-url="http://localhost:8000">
</remote-plugin-container>
</atlassian-plugin>
The url which i get after running ngrok, i'm uploading it to JIRA in manage add-on's, but i'm getting the error while uploading:
//The add-on descriptor failed to validate against the schema. Please confirm this add-on is intended for use with JIRA and then contact the add-on vendor.
The error message as you pasted it includes extra whitespace. Maybe you accidentally included it in your descriptor without realizing it and the value isn't trimmed?
/baseUrl: string " https://3a48dc0a.ngrok.io" is not a valid URI// ^--- extra space in the string?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not an expert on Connect, so I'm not sure whether there are any other problems with the descriptor or not.
What I can tell you is that the specific error that's being reported comes from json-schema-validator and the reason it gets generated is only ever that Java itself says there is something wrong with the URI, as you can see in its URIAttribute.java source.
I suggest that you remove the baseUrl attribute from the descriptor and carefully type it back it, because the error message is definitely telling you that this is the problem.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.