mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
fix script url in code example
This commit is contained in:
parent
bdb7ff98d5
commit
edd8b7bd57
@ -108,17 +108,17 @@ Next deploy the application to a domain like `consent.example.com`. On the host
|
|||||||
which exposed `window.ConsentClient`. In your client side code, construct a new client instance pointing at your deployment and request user consent for the desired scope(s):
|
which exposed `window.ConsentClient`. In your client side code, construct a new client instance pointing at your deployment and request user consent for the desired scope(s):
|
||||||
|
|
||||||
```jsx
|
```jsx
|
||||||
const client = new window.ConsentClient({ url: '[https://consent.example.com](https://consent.example.com/)' })
|
const client = new window.ConsentClient({ url: 'https://consent.example.com' })
|
||||||
client
|
client
|
||||||
.acquire('analytics', 'marketing')
|
.acquire('analytics', 'marketing')
|
||||||
.then((decisions) => {
|
.then((decisions) => {
|
||||||
if (decisions.analytics) {
|
if (decisions.analytics) {
|
||||||
// load analytics data
|
// load analytics data
|
||||||
}
|
}
|
||||||
if (decisions.marketing) {
|
if (decisions.marketing) {
|
||||||
// trigger marketing tools
|
// trigger marketing tools
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
##### The *Offen Consent Tool* further allows you to create the binary yourself and provides a development setup. It can also be used as a library and be integrated into any web server written in Golang.
|
##### The *Offen Consent Tool* further allows you to create the binary yourself and provides a development setup. It can also be used as a library and be integrated into any web server written in Golang.
|
||||||
|
Loading…
Reference in New Issue
Block a user