Using the @forge/bridge
package, you'll learn how to make REST calls to an authenticated Jira endpoint.
This is part 2 of 3 in this tutorial. Complete Part 1: Build a Jira hello world app before working on this page.
In this section, you'll modify your app to call the Jira REST API. Using the requestJira function from the @forge/bridge
package, you'll get the comments on a Jira issue in the form of an array and print the number of comments to the console.
The @forge/bridge
package simplifies HTTP operations and contains other Forge APIs such as the Storage and Properties APIs. For this tutorial, you'll also use the UI Kit hook
useProductContext to get context information about the Jira issue the app is on.
In the app's top-level directory make sure your tunnel is running:
1 2forge tunnel
Open the src/frontend/index.jsx
and replace its contents with the following code:
1 2import React from "react"; // useProductContext hook retrieves current product context import ForgeReconciler, { Text, useProductContext } from "@forge/react"; // requestJira calls the Jira REST API import { requestJira } from "@forge/bridge"; const App = () => { const context = useProductContext(); // add the the 'comments' variable to store comments data const [comments, setComments] = React.useState(); console.log(`Number of comments on this issue: ${comments?.length}`); // start of function that calls Jira REST API const fetchCommentsForIssue = async () => { // extract issue ID instead expecting one from function input const issueId = context?.extension.issue.id; // modify to take issueId variable const res = await requestJira(`/rest/api/3/issue/${issueId}/comment`); const data = await res.json(); return data.comments; }; React.useEffect(() => { if (context) { // extract issue ID from the context const issueId = context.extension.issue.id; // use the issue ID to call fetchCommentsForIssue(), // then updates data stored in 'comments' fetchCommentsForIssue().then(setComments); } }, [context]); // This UI will be updated in the next part of this tutorial // to display number of comments onto the screen return <Text>Hello world!</Text>; }; ForgeReconciler.render( <React.StrictMode> <App /> </React.StrictMode> );
This code includes comments to help you quickly understand what each section does.
When you save the index.jsx
file, the tunnel output in the terminal
will display a permission-scope-required
error. To address this, you'll
need to add the required permissions first; this is covered later in the
Set required permissions section.
If you haven't enabled usage analytics yet, we recommend you do so using following command:
1 2forge settings set usage-analytics true
This command provides the consent required by Forge to collect data about your app's deployments and installations (including error data). This, in turn, helps us monitor the overall performance and reliability of Forge. The collected data also helps us make better decisions on improving Forge's feature set and performance.
For information about how Atlassian collects and handles your data, read our Privacy Policy.
Your app calls a remote resource; namely, the Jira REST API. As such, you'll need to grant your app the right permissions. To do this, you'll need to add the required OAuth 2.0 scope to the app's manifest.
For more information on adding scopes, see Add scopes to call an Atlassian REST API.
In the steps below, you'll do this by using the forge lint
command. This command will automatically
add the required scope to your manifest.yml
file (in this case, read:jira-work
).
Run the following command:
1 2forge lint --fix
Whenever you change permissions, you must upgrade the app's installation. Stop your tunnel process and run these commands to deploy and install your change:
1 2forge deploy forge install --upgrade
Start the tunnel again:
1 2forge tunnel
Alternatively, you can also manually add required scopes to your manifest.yml
file.
Learn more about adding scopes to call an Atlassian REST API.
1 2Number of comments on this issue: 1
When you save the index.jsx
file, the tunnel output in the developer console may display a permission-scope-required
error. To address this, you'll need to add the required permissions first and this is covered in the next section.
In the next tutorial, you'll learn how to make changes to your app's frontend using the UI Kit components of Forge.
Rate this page: