Skip to main content
Skip table of contents

Authentication

NOBB Connect Supplier uses OAuth 2.0 as its authentication mechanism.

In order to authenticate against NOBB Connect Supplier, you will need a Client Id, a Client Secret, and an Audience. These are values you will get from Byggtjeneste when you enter into a contract to use NOBB Connect Supplier.

Once you have the above, you will first need to make a request to the Byggtjeneste Auth API, to generate an Authorization Bearer Token. Then you will be able to access the API using the Authorization Bearer Token. 

Auth API Access

To generate an Authorization Bearer Token, you will need to call the Auth API with your Client Id, Client Secret, and Audience. An example request is below:

CODE
curl -L -X POST 'https://AUTHAPIURL/api/clientaccess' \
-H 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'clientId=ID' \
--data-urlencode 'clientSecret=SECRET' \
--data-urlencode 'audience=AUDIENCE'

After a successful request, you will receive an Authorization Bearer Token that you can pass to the NOBB Connect Supplier API to make authenticated requests.

 

NOBB Connect Supplier Access

To access the NOBB Connect Supplier API, you will need to pass the Authorization Bearer Token, you received from the Auth API. An example CURL request is below:

CODE
curl    -X POST \    'https://api.byggtjeneste.no/nobbsupplier/api/vX/method' \    -H 'Authorization: Bearer YOUR_GENERATE_BEARER_TOKEN'

Now you should be able to access NOBB Connect Supplier.

For more information on the Auth API, including URLs to different environments, please visit the Authentication API space.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.