Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

A set of connectors for Google Data Studio to fetch data from Facebook Graph API.

License

Notifications You must be signed in to change notification settings

Chiogros/Facebook-and-Instagram-connectors-for-GDataStudio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Facebook and Instagram connectors for GDataStudio

Google Data Studio connectors to fetch data from Graph API.

Connectors organization

There is a main connector called Core that is common for both Facebook and Instagram (since both use Graph API): it retrieves data, transforms data for GDS and also it sets the authentication method. Children connectors (Page, Counts, ...) use Core functions and use specific functions they have for their API endpoint.

Connectors schema

How to use them on GDS

Setup Core connector

  1. Go to Google Apps Script
  2. Create a new project
  3. Name it
  4. Go to project settings
  5. Check Display appsscript.json manifest file
  6. Take note about Script ID (useful for children connectors)
  7. Go back to code window
  8. Create files and set code for Core connector

Setup child connector

  1. Go to Google Apps Script
  2. Create a new project
  3. Name it
  4. Go to project settings
  5. Check Display appsscript.json manifest file
  6. Go back to code window
  7. Create files and set code for the child connector
  8. In appsscript.json, change Dependencies > Libraries > LibraryID to the Core script ID you took note
  9. Deploy it (easiest by going through Use old editor button > Publish > Publish from manifest file)

Use connectors in GDS

  1. Go to Google Data Studio
  2. Create > Data source
  3. Search for your deployed child connector
  4. Fill with credentials
  5. Now you can import it in your GDS reports

Credentials

Get access token

  1. Create a Facebook developer account
  2. On your developer portal, create an app
  3. Take note about app ID and secret key shown in app settings
  4. Go to Graph API Explorer
  5. User or Page dropdown menu: Get a user access token
  6. Add right permissions for your token (you can find which ones are required in permissions file in connector's folder)
  7. Generate the token
  8. Go there by changing CLIENT_ID, CLIENT_SECRET and TOKEN with yours.
  9. Fetch the new token, available for 60 days
  10. Use the latter one

Get object ID

Facebook

  1. Go to the Facebook page you want to track
  2. In the page's navbar: More > Page ID

Instagram

  1. Go to your account profile
  2. Append ?__a=1 to the URL
  3. Search for profilePage_: your account ID is the following number.

How to create a new Facebook or Instagram connector

First, copy Page or Counts connector.

Link to the Graph API documentation, where you can find information for steps below.

Then you have 3 things to change :

  1. Change fields array that contains all fields to retrieve from API (stick with thoses in steps below)
// core.gs
var fields = ['id', 'about', 'access_token', 'ad_campaign', ...];
  1. Put fetchable fields from API
// fields.gs
function getFields(request) {
  var fields = cc.getFields();
  var types = cc.FieldType;
  var aggregations = cc.AggregationType;

  fields.newDimension()
    .setId('Facebook_id')
    .setType(types.NUMBER); // BOOLEAN, TEXT, ...

  fields.newDimension()
    .setId('Facebook_FieldName_example')
    .setType(types.NUMBER); // BOOLEAN, TEXT, ...
  
  // put all fetchable fields
  
  return fields;
}
  1. Handle each data row
// dataHandler.gs
function responseToRows(requestedFields, response) {

  var rows = new Array();

  var fields = requestedFields.asArray();
  
  // Filter for requested fields
  fields.forEach(function (field) {
    
    switch (field.getId()) {
        case 'Facebook_id':
          return rows.push(response.id);
        case 'Facebook_FieldName_example':
          return rows.push(response.FieldName_example);
        // put all other cases
        default:
          break;
    }
  });

  return rows.map(function(row) {
    return { values: [row] };
  });
}

About

A set of connectors for Google Data Studio to fetch data from Facebook Graph API.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project