{"id":9146,"date":"2015-07-30T07:46:44","date_gmt":"2015-07-30T14:46:44","guid":{"rendered":"http:\/\/www.seedcode.com\/?p=9146"},"modified":"2015-07-30T07:46:44","modified_gmt":"2015-07-30T14:46:44","slug":"filemaker-oauth-dropbox-part1","status":"publish","type":"post","link":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/","title":{"rendered":"FileMaker and OAuth: DropBox to FileMaker Part 1"},"content":{"rendered":"<p><em>The first in a series of articles unpacking the Dropbox to FileMaker app I demoed at DevCon 2015. Links to the unlocked file follow along with tips for working with Access Tokens and OAuth2 in FileMaker web viewers.\u00a0<\/em><\/p>\n<h2>Background<\/h2>\n<div class=\"lightbox\">\n<figure id=\"attachment_9148\" aria-describedby=\"caption-attachment-9148\" style=\"width: 148px\" class=\"wp-caption alignright\"><a href=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/in.png\"><img decoding=\"async\" class=\"size-medium wp-image-9148\" src=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/in-148x300.png\" alt=\"FileMaker OAuth to Dropbox\" width=\"148\" height=\"300\" srcset=\"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/07\/in-148x300.png 148w, https:\/\/seedcode.com\/wp-content\/uploads\/2015\/07\/in.png 411w\" sizes=\"(max-width: 148px) 100vw, 148px\" \/><\/a><figcaption id=\"caption-attachment-9148\" class=\"wp-caption-text\">Dropbox2FileMaker running in FileMaker Go<\/figcaption><\/figure>\n<\/div>\n<p>DevCon 2015 has come and gone, and certainly one of the highlights for me was building an app that integrates <a href=\"https:\/\/www.dropbox.com\/\" target=\"_blank\" rel=\"noopener\">Dropbox<\/a> and FileMaker.\u00a0I had previously discovered that the FileMaker Script Step <strong>Insert From URL<\/strong> works with dropbox URLs. In fact, this was\u00a0the primary motivation for speaking about Insert From URL at DevCon.<\/p>\n<p>The original goal was to do a simple demo inserting a file stored on Dropbox into a FileMaker container field. This worked fine, but had a glaring practical limitation: the only URLs you can predict, and therefore program, are the ones in the Dropbox public folder.\u00a0The download strings that Dropbox generates outside the public folder are, for all intents and purposes, random.<\/p>\n<p>After a little research, I discovered that Dropbox had a relatively simple <a href=\"https:\/\/www.dropbox.com\/developers\/core\/docs\" target=\"_blank\" rel=\"noopener\">http API<\/a>, and\u00a0that\u00a0through it you could get these download URLs. I also noticed there was a lot of other stuff the Dropbox API could do and decided to go a little deeper! How much could we do with Dropbox using the Insert From URL script step? Since Insert From URL works in FileMaker GO, I took the approach of building a mobile first app to test the question.<\/p>\n<p>We&#8217;re happy to share the resulting demo file on our <a href=\"http:\/\/www.seedcode.com\/downloads\/\" target=\"_blank\" rel=\"noopener\">downloads page<\/a> in the <strong>DevCon 2015 Demo Files<\/strong> section. The first thing you&#8217;ll need to do to play around with this file is to get it authorized.<\/p>\n<h2>Registering Your\u00a0FileMaker App\u00a0for OAuth<\/h2>\n<p>The Dropbox API requires you to go through an authorization process using <a href=\"https:\/\/en.wikipedia.org\/wiki\/OAuth\" target=\"_blank\" rel=\"noopener\">OAuth2.0<\/a>. Essentially, you need to get an Access Token from Dropbox. Once you have the Access Token, you need include it as a parameter in the API&#8217;s\u00a0GETs and POSTs to retrieve data from Dropbox. <!--more-->The process of getting the token with DropBox is similar to other APIs I&#8217;ve used, but has a few features that make it work well within FileMaker. However, before you can begin attempting to authenticate to DropBox, you need to register your &#8220;app&#8221; with DropBox. This is free, but does require a DropBox account. Setting up your app is done <a href=\"https:\/\/www.dropbox.com\/developers\/apps\" target=\"_blank\" rel=\"noopener\">here<\/a>. Once you&#8217;ve registered your app, Dropbox will provide you with an &#8220;App Key&#8221; and an &#8220;App Secret&#8221;. These are used in the OAuth process and we have fields for these values in the Settings section of our sample file.<\/p>\n<div class=\"lightbox\">\n<figure id=\"attachment_2530\" aria-describedby=\"caption-attachment-2530\" style=\"width: 272px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/keyandsecret.png\" target=\"_blank\" rel=\"noopener\"><img fetchpriority=\"high\" decoding=\"async\" class=\"wp-image-2530\" src=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/keyandsecret.png\" alt=\"FileMaker OAuth Key and Secret\" width=\"272\" height=\"549\" \/><\/a><figcaption id=\"caption-attachment-2530\" class=\"wp-caption-text\">Entering the App Key and Secret into Settings.<\/figcaption><\/figure>\n<\/div>\n<p>Once you have the App Key and Secret entered, you can begin the OAuth process.<\/p>\n<h2>OAuth Via the FileMaker Web Viewer<\/h2>\n<p>Like many OAuth implementations, the first step in authenticating is to go to a web page provided by Dropbox where you manually enter your Dropbox credentials and Authorize the App. These steps are meant to be done by humans, as being able to just pass these credentials via POST would make it considerably easier to\u00a0&#8220;crack&#8221; the process.<\/p>\n<p>Log Into Dropbox via Web Viewer. The URL for the Web Viewer is specific to the App that you registered and looks like this:<\/p>\n<pre>\"https:\/\/www.dropbox.com\/1\/oauth2\/authorize?response_type=code&amp;client_id=\"&amp; DropBox::AppKey<\/pre>\n<p>The <em><strong>response_type=code<\/strong><\/em> parameter is nice because it specifies that we want to receive the &#8220;code&#8221; right in the web viewer itself. Typically an Oath flow will require a CallBack URL, and the code will be POSTed to that URL where it could be retrieved in a typical web app. However, we have no way of doing that in our\u00a0Web Viewer, and we&#8217;d be stuck at this point. Fortunately, we can get our code as text in the web viewer and copy and paste it into our FileMaker field!<\/p>\n<div style=\"display: Block;\">\n<div class=\"lightbox\">\n<figure id=\"attachment_2533\" aria-describedby=\"caption-attachment-2533\" style=\"width: 272px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/login.png\"><img decoding=\"async\" class=\"wp-image-2533\" src=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/login.png?w=148\" alt=\"FileMaker OAuth 1 of 3\" width=\"272\" height=\"550\" \/><\/a><figcaption id=\"caption-attachment-2533\" class=\"wp-caption-text\">1) Authorize to Dropbox in the Web Viewer<\/figcaption><\/figure>\n<\/div>\n<div class=\"lightbox\">\n<figure id=\"attachment_2534\" aria-describedby=\"caption-attachment-2534\" style=\"width: 272px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/allow.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-2534\" src=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/allow.png?w=148\" alt=\"FileMaker OAuth 2 of 3\" width=\"272\" height=\"550\" \/><\/a><figcaption id=\"caption-attachment-2534\" class=\"wp-caption-text\">2) Explicitly allow your App access to your Dropbox Account<\/figcaption><\/figure>\n<\/div>\n<div class=\"lightbox\">\n<figure id=\"attachment_2537\" aria-describedby=\"caption-attachment-2537\" style=\"width: 272px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/code.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-2537\" src=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/code.png?w=148\" alt=\"FileMaker OAuth 3 of 3\" width=\"272\" height=\"550\" \/><\/a><figcaption id=\"caption-attachment-2537\" class=\"wp-caption-text\">3) Paste code to our FM field and POST to Dropbox with the App Key and App Secret via Insert From URL<\/figcaption><\/figure>\n<\/div>\n<\/div>\n<h2 style=\"display: Block;\">\u00a0Insert From URL<\/h2>\n<div style=\"display: Block;\">This code is not our Access Token, however. Once we have this code, we need\u00a0to do a POST to Dropbox with\u00a0this code, and\u00a0our App Key and App Secret. The code is only good for a short time, and Dropbox is expecting this POST soon after the code is generated. If this POST is successful and the code, key and secret all check out, then DropBox will return an Access Token and we can begin to make actual API calls to DropBox. This POST to get the Access Token is the first time that we use Insert From URL, and the URL we create for this looks like:<\/div>\n<p>&nbsp;<\/p>\n<pre>httpspost:\/\/api.dropbox.com\/1\/oauth2\/token?code=<strong>&lt;Code From Web Viewer&gt;<\/strong>&amp;grant_type=authorization_code&amp;client_id=<strong>&lt;App Key&gt;<\/strong>&amp;client_secret=<strong>&lt;App Secret&gt;<\/strong><\/pre>\n<p>A successful POST returns a response in JSON format that looks like this:<\/p>\n<pre class=\"literal-block\">{\"access_token\": \"ABCDEFG\", \"token_type\": \"bearer\", \"uid\": \"12345\"}<\/pre>\n<p>We can then use our <a href=\"http:\/\/www.modularfilemaker.org\/module\/json\/\" target=\"_blank\" rel=\"noopener\">JSON parsing tools<\/a> (more on this in an upcoming post) to extract the Access Token and we&#8217;re in business! We can now make our first call to retrieve the top level Dropbox folder and display the contents in FileMaker.<\/p>\n<div class=\"lightbox\"><a href=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/in.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-2558\" src=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2015\/07\/in.png?w=148\" alt=\"FileMaker OAuth to Dropbox Complete App\" width=\"281\" height=\"568\" \/><\/a><\/div>\n<p>The Access Tokens do not expire, but they can be revoked either via the API or from the\u00a0<a href=\"https:\/\/www.dropbox.com\/developers\/apps\" target=\"_blank\" rel=\"noopener\">App Console<\/a>. Care should be taken with these Access Tokens as they are the keys to the castle!<\/p>\n<p>Stay tuned for more on using the Dropbox API with\u00a0our demo file\u00a0coming soon!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The first in a series of articles unpacking the Dropbox to FileMaker app I demoed at DevCon 2015. Links to the unlocked file follow along with tips for working with Access Tokens and OAuth2 in FileMaker web viewers.\u00a0 Background DevCon 2015 has come and gone, and certainly one of the highlights for me was building an app that integrates Dropbox and FileMaker.\u00a0I had previously discovered that the FileMaker Script Step Insert From URL works with dropbox URLs. In fact, this was\u00a0the primary motivation for speaking about Insert From URL at DevCon. The original goal was to do a simple demo inserting a file stored on Dropbox into a FileMaker container field. This worked fine, but had a glaring practical limitation: the only URLs you can predict, and therefore program, are the ones in the Dropbox public folder.\u00a0The download strings that Dropbox generates outside the public folder are, for all intents and purposes, random. After a little research, I discovered that Dropbox had a relatively simple http API, and\u00a0that\u00a0through it you could get these download URLs. I also noticed there was a lot of other stuff the Dropbox API could do and decided to go a little deeper! How much could we do with Dropbox using the Insert From URL script step? Since Insert From URL works in FileMaker GO, I took the approach of building a mobile first app to test the question. We&#8217;re happy to share the resulting demo file on our downloads page in the DevCon 2015 Demo Files section. The first thing you&#8217;ll need to do to play around with this file is to get it authorized. Registering Your\u00a0FileMaker App\u00a0for OAuth The Dropbox API requires you to go through an authorization process using OAuth2.0. Essentially, you need to get an Access Token from Dropbox. Once you have the Access Token, you need include it as a parameter in the API&#8217;s\u00a0GETs and POSTs to retrieve data from Dropbox.<\/p>\n","protected":false},"author":3,"featured_media":8750,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[32,23],"class_list":["post-9146","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-devcon-2015","tag-javascript"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>FileMaker and OAuth: DropBox to FileMaker Part 1 - SeedCode<\/title>\n<meta name=\"description\" content=\"A look inside the Dropbox to FileMaker app from DevCon 2015 showing how to work with FileMaker and OAuth in the webviewer.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FileMaker and OAuth: DropBox to FileMaker Part 1 - SeedCode\" \/>\n<meta property=\"og:description\" content=\"A look inside the Dropbox to FileMaker app from DevCon 2015 showing how to work with FileMaker and OAuth in the webviewer.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/\" \/>\n<meta property=\"og:site_name\" content=\"SeedCode\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/seedcoder\" \/>\n<meta property=\"article:published_time\" content=\"2015-07-30T14:46:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png\" \/>\n\t<meta property=\"og:image:width\" content=\"109\" \/>\n\t<meta property=\"og:image:height\" content=\"110\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"jasonchryoung\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dayback\" \/>\n<meta name=\"twitter:site\" content=\"@dayback\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"jasonchryoung\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/\"},\"author\":{\"name\":\"jasonchryoung\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/21c8e63200786c642eb068377e428ebd\"},\"headline\":\"FileMaker and OAuth: DropBox to FileMaker Part 1\",\"datePublished\":\"2015-07-30T14:46:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/\"},\"wordCount\":941,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\/\/seedcode.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png\",\"keywords\":[\"DevCon 2015\",\"javascript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/\",\"url\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/\",\"name\":\"FileMaker and OAuth: DropBox to FileMaker Part 1 - SeedCode\",\"isPartOf\":{\"@id\":\"https:\/\/seedcode.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png\",\"datePublished\":\"2015-07-30T14:46:44+00:00\",\"description\":\"A look inside the Dropbox to FileMaker app from DevCon 2015 showing how to work with FileMaker and OAuth in the webviewer.\",\"breadcrumb\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#primaryimage\",\"url\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png\",\"contentUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png\",\"width\":109,\"height\":110},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seedcode.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FileMaker and OAuth: DropBox to FileMaker Part 1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/seedcode.com\/#website\",\"url\":\"https:\/\/seedcode.com\/\",\"name\":\"SeedCode\",\"description\":\"Build the Software You&#039;ve Always Wanted\",\"publisher\":{\"@id\":\"https:\/\/seedcode.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/seedcode.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/seedcode.com\/#organization\",\"name\":\"SeedCode\",\"url\":\"https:\/\/seedcode.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png\",\"contentUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png\",\"width\":595,\"height\":189,\"caption\":\"SeedCode\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/seedcoder\",\"https:\/\/x.com\/dayback\",\"https:\/\/www.linkedin.com\/company\/seedcode\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/21c8e63200786c642eb068377e428ebd\",\"name\":\"jasonchryoung\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"jasonchryoung\"},\"url\":\"https:\/\/seedcode.com\/author\/jasonchryoung\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FileMaker and OAuth: DropBox to FileMaker Part 1 - SeedCode","description":"A look inside the Dropbox to FileMaker app from DevCon 2015 showing how to work with FileMaker and OAuth in the webviewer.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/","og_locale":"en_US","og_type":"article","og_title":"FileMaker and OAuth: DropBox to FileMaker Part 1 - SeedCode","og_description":"A look inside the Dropbox to FileMaker app from DevCon 2015 showing how to work with FileMaker and OAuth in the webviewer.","og_url":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/","og_site_name":"SeedCode","article_publisher":"https:\/\/www.facebook.com\/seedcoder","article_published_time":"2015-07-30T14:46:44+00:00","og_image":[{"width":109,"height":110,"url":"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png","type":"image\/png"}],"author":"jasonchryoung","twitter_card":"summary_large_image","twitter_creator":"@dayback","twitter_site":"@dayback","twitter_misc":{"Written by":"jasonchryoung","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#article","isPartOf":{"@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/"},"author":{"name":"jasonchryoung","@id":"https:\/\/seedcode.com\/#\/schema\/person\/21c8e63200786c642eb068377e428ebd"},"headline":"FileMaker and OAuth: DropBox to FileMaker Part 1","datePublished":"2015-07-30T14:46:44+00:00","mainEntityOfPage":{"@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/"},"wordCount":941,"commentCount":6,"publisher":{"@id":"https:\/\/seedcode.com\/#organization"},"image":{"@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#primaryimage"},"thumbnailUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png","keywords":["DevCon 2015","javascript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/","url":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/","name":"FileMaker and OAuth: DropBox to FileMaker Part 1 - SeedCode","isPartOf":{"@id":"https:\/\/seedcode.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#primaryimage"},"image":{"@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#primaryimage"},"thumbnailUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png","datePublished":"2015-07-30T14:46:44+00:00","description":"A look inside the Dropbox to FileMaker app from DevCon 2015 showing how to work with FileMaker and OAuth in the webviewer.","breadcrumb":{"@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#primaryimage","url":"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png","contentUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2015\/06\/dpbx.png","width":109,"height":110},{"@type":"BreadcrumbList","@id":"https:\/\/seedcode.com\/filemaker-oauth-dropbox-part1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seedcode.com\/"},{"@type":"ListItem","position":2,"name":"FileMaker and OAuth: DropBox to FileMaker Part 1"}]},{"@type":"WebSite","@id":"https:\/\/seedcode.com\/#website","url":"https:\/\/seedcode.com\/","name":"SeedCode","description":"Build the Software You&#039;ve Always Wanted","publisher":{"@id":"https:\/\/seedcode.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seedcode.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/seedcode.com\/#organization","name":"SeedCode","url":"https:\/\/seedcode.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/#\/schema\/logo\/image\/","url":"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png","contentUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png","width":595,"height":189,"caption":"SeedCode"},"image":{"@id":"https:\/\/seedcode.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/seedcoder","https:\/\/x.com\/dayback","https:\/\/www.linkedin.com\/company\/seedcode\/"]},{"@type":"Person","@id":"https:\/\/seedcode.com\/#\/schema\/person\/21c8e63200786c642eb068377e428ebd","name":"jasonchryoung","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"jasonchryoung"},"url":"https:\/\/seedcode.com\/author\/jasonchryoung\/"}]}},"_links":{"self":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts\/9146","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/comments?post=9146"}],"version-history":[{"count":0,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts\/9146\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/media\/8750"}],"wp:attachment":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/media?parent=9146"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/categories?post=9146"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/tags?post=9146"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}