Add support for DC to Forge remote migrations

XMLWordPrintable

      Context

      Forge remote allows apps outside Atlassian to call Atlassian services like so 

       

      const apiBaseUrl = 'https://api.atlassian.com/forge/storage/kvs';
      export async function fetchFromStorage(token, apiBaseUrl) {
        const headers = {
           'Accept': 'application/json',
           'Authorization': `Bearer ${token}`,
           'Content-Type': 'application/json'
        }
        return await fetch(`${apiBaseUrl}/v1/get`, { method: "POST", headers });
      } 

      The App migration platform APIs does not currently support this kind of calls.

       

      Suggestion

      The Forge APIs defined here https://developer.atlassian.com/platform/app-migration/rest/v2/api-group-forge-resource/#api-group-forge-resource

      are callable by Forge remotes

       

            Assignee:
            Unassigned
            Reporter:
            David Yu
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: