I create a forge app for my repository to handle pull request events,
i want to set some environment variables but when i use storage it’s not working and i use command forge variables set and forge variables list i see my list of variables but i cannot get them in my app.
i use this module bitbucket:repoMainMenuPage but when i try to fetch current user like const getCurrentUserInfo = async () => {
** try {**
** const user = await api.asApp().requestBitbucket(route/2.0/user);**
** console.log(DEBUG: ${user});**
** return user.body;**
** } catch (error) {**
** console.error(‘Error fetching user info:’, error);**
** return null;**
** }** };
i get ERROR 21:44:00.580 0000000000000000ffd3ad2d99cf0a6b Error fetching user info: {
message: ‘URL not allowed: /2.0/user.’,
name: ‘REQUEST_EGRESS_ALLOWLIST_ERR’,
status: 403
}