Skip to content

ScotGovAnalysis/shiny_cookies

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to add Cookie Control to an R Shiny app

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.

Introduction

Google Analytics (GA) is commonly used with Shiny apps to measure user-interactions. Since GA uses cookies to "remember" what a user has done, it is important to comply with relevant legislation when using this technology.

This guide explains how to set up a cookie tool (Cookie Control) in your Shiny app so users can control whether cookies are stored on their device. It includes the source code for this example Shiny app that uses GA. The general idea should work for other 3rd party tools such as Mouseflow (although I haven't tested this).

The important bits are in ui.R and the Cookie Control configuration. You can see a real life application of this approach in the Scottish Government's Equality Evidence Finder.

Caveats

  • This is not legal advice and I am not an expert in this area of the law or on cookies
  • Following these instructions will not automatically make your use of cookies compliant with the law. There are other things you must take into account which are explained in the guidance linked below.

The law

A number of laws regulate how data can and cannot be used.

The GDPR apply to the processing of personal data. This guide does not cover any aspect of the GDPR and assumes your Shiny app either: does not come under the GDPR or is already compliant with it.

The PECR give people specific privacy rights in relation to electronic communications. There are specific rules on cookies:

  • tell people the cookies are there
  • explain what the cookies are doing and why
  • get the person’s consent to store a cookie on their device

This guide explains one approach to implementing the third rule on cookies in a Shiny app.

Steps

  1. build a Shiny app
  2. add Google Analytics
  3. add Cookie Control
    • set up an account and specify the URL your app will be deployed to.
    • create a www folder within your Shiny app directory
    • save your Cookie Control configuration in a .js file in www. It should look something like this. Remember to update with your API key, product edition, and GA tracking id.
    • Add both the Cookie Control module and your own configuration to ui.R. It should look something like this.
    • Deploy the app. Cookie Control won't work until it's deployed at the URL you specified in your online account.
    • Confirm Cookie Control is behaving correctly. You can do this by toggling the relevant option in Cookie Control and seeing the cookies appear/dissappear on your device (in MS Edge press F12 -> Debugger -> expand Cookies). Or if you're using GA you should see a change in the number of active users in your Real-Time report.
    • Adjust the default behaviour and appearance of Cookie Control using the configuration options.

Troubleshooting

Cookie Control won't show up when testing locally

The Community Edition of Cookie Control only works for one URL. This means it won't show up when you test it locally. According to Cookie Control:

All examples [in their documentation] use our test API Key, which can be used on your localhost, or JS Fiddle to experiment with the functionality available.

I don't know how to do this. If you figure this out please let me know so I can mention it here for the benefit of others.

For testing you'll need a browser that isn't configured to block cookies

If your browser is configured to block cookies you probably won't be able to confirm Cookie Control is behaving correctly. Try changing the settings in your browser, or using a different browser that isn't configured to block cookies.

The GA Real-Time report can take a few minutes to update

GA can take a few minutes to update the number of active users in your Real-Time report. This can be a little confusing if you're expecting to see a change. Try waiting a few minutes between toggling options in Cookie Control. It might help to only test one device at a time to keep things simple.

Licence

This repository is available under the Open Government Licence v3.0.