All Collections
GeoBooster
Zapier Geobooster
Posting from GeoBooster to social media Zapier
Posting from GeoBooster to social media Zapier

How to post moments from GeoBooster to Twitter and other social media platforms.

S
Written by Sebastian Donnelly
Updated over a week ago

If you want to publish moments created with GeoBooster on your social media account, you need to set up an integration with Zapier. Let’s say you want to publish your moments to Twitter.

First of all, go to https://zapier.com/ and create an account (if you don’t have one). You will need a Premium account to work with webhooks and looping.

  1. Create a new zap: click on “Create zap.”

  2. Set the name of your zap, then type “Webhook” in the search input below the “App event” and click on the “Webhooks by Zapier” in the search results list.

  3. Select “Catch Raw Hook” in the “Event” dropdown and click the “Continue” button.

  4. Copy the “webhook URL”, then go to GeoBooster web-application, choose your business, proceed to the “Settings” page, paste the URL into the “Zapier webhook” field, and click the “Update” button.

  5. Create a new moment in the GeoBooster for your business and approve it for publishing.

  6. Go back to Zapier and click on the “Test trigger” button.

  7. It may say something like “We couldn't find a request”, which is OK, because GeoBooster sends moments to the webhook every 10 minutes. Please wait for 10 minutes and click the “Test trigger” button again.

  8. You should see the “We found a request!” message. Click the “Continue” button below.

  9. You will see the “Action” form. Type in “Code” in the “App event” field and select “Code by Zapier” in the search results below.

  10. Click in the “Event” field and select “Run Javascript” in the dropdown below.

  11. Click on the “Setup action” button.

  12. Type “body” into the “Input Data” field, click in the “Enter text or insert data…” field, and select “Raw Body” in the dropdown.

  13. Copy script below and paste it into the “Code” field:
    output = JSON.parse(inputData.body).map((moment) => {
    return {
    description: moment.description,
    formattedAddress: moment.from_office ? moment.business.name +' office': moment.formatted_address,
    customerName: moment.customer || 'Anonymous customer',
    employeeName: moment.employee?.name || moment.business.name,
    mainImage: moment.images.length ? moment.images[0].full_url : '',
    categoryName: moment.category?.title || 'Uncategorized'
    }
    })

  14. You will get something like this. Click the “Continue” button.

  15. Click the “Test action” button.

  16. You will see something like this. Click the “+” button below.

  17. You will see the “Action” form. Type in “Looping” in the “App event” field and select “Looping by Zapier” in the search results below.

  18. Click in the “Event” field and select “Create Loop From Line Items” in the dropdown below.

  19. Click the “Continue” button.

  20. Type “Media” in the “Values to Loop” field, click in the “Enter text or insert data…” field, select “Run Javascript in Code by Zapier”, and the “Show all options” button.

  21. Select the “Main image” option from the dropdown.

  22. Click the square shaped “+” button to add a new line.

  23. Fill up the “Set up action” form as shown below.

  24. Leave other fields unchanged, scroll down, and click the “Continue” button.

  25. Click the “Test action” button.

  26. You will see “Your loop ran successfully…” message. Click the round “+” button below.

  27. You will see the “Action” form. Type in “Twitter” in the “App event” field and select “Twitter” in the search results below.

  28. Click in the “Event” field and select “Create Tweet” in the dropdown below.

  29. Click the “Continue” button.

  30. Click in the “Twitter account” field and click on the “Connect a new account” in the dropdown below.

  31. A new window will open, asking to provide access to your Twitter account. Click the “Yes, Continue” button.

  32. A new window will open, click the “Authorize app” button.

  33. You will be redirected back to Zapier, your account will be chosen in the “Twitter account field. Click the “Continue” button.

  34. Fill in the “Message” field as shown below:

  35. Click into the “Image, Video or GIF” field and select “Create Loop From Line Items in Looping by Zapier”->”Show all options”->”Media”.

  36. Click the “Continue” button.

  37. Click the “Test Action” button (Warning: your moment will be published in your Twitter account!).

  38. If everything went smoothly you will see “A Tweet was sent to Twitter…” message. Click the “Publish Zap” button below.

  39. Click the “Publish & Turn On” button.

  40. Congratulations! You’ve successfully set up posting from GeoBooster to Twitter. Your tweet will look like this.

Did this answer your question?