Make your first Business Application
Create an Account for the Business Application
Create an Access Request
Access GrantsRequirements
import { issueAccessRequest } from "@inrupt/solid-client-access-grants";
const vcData = await issueAccessRequest(
{
access: { read: true },
resourceOwner: resourceOwner,
resources: [userWalletStorage + '/wallet/text.txt'],
expirationDate: new Date(Date.now() + 60 * 60 * 10000),
},
{
fetch: businessSession.fetch,
}
);Send the Access Request to the Inbox
Last updated