<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help embedding a folder in my site in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/574568#M26790</link>
    <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1514134"&gt;@Hawkeye00&lt;/a&gt; To use the Dropbox Embedder, make sure you've registered the domain(s) of your site(s) where you want to use it. You can find more information in &lt;A href="https://www.dropbox.com/developers/embedder" target="_self"&gt;the Dropbox Embedder documentation&lt;/A&gt;. You can register your "Chooser / Saver / Embedder domains" from your app's page on &lt;A href="https://www.dropbox.com/developers/apps" target="_self"&gt;the App Console&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Mon, 31 Jan 2022 18:11:20 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2022-01-31T18:11:20Z</dc:date>
    <item>
      <title>Embedding files on our website</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525179#M25520</link>
      <description>&lt;P&gt;&lt;SPAN&gt;When&amp;nbsp;I upload a picture or video to a dropbox folder that is a subfolder sorted into days within an umbrella folder (manually - only a&amp;nbsp;couple a day) - how do I automatically embed the most recent .jpg/.mp4 of any of the subfolders into the website. Purely displaying the image or video itself and not the list of what is in the folder. Many thanks (don't understand any of the API stuff so some HTML code that&amp;nbsp;I can change account details within or&amp;nbsp;something simple would be super&amp;nbsp;&lt;/SPAN&gt;appreciated)&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 19:15:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525179#M25520</guid>
      <dc:creator>samuelar</dc:creator>
      <dc:date>2021-06-09T19:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding files on our website</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525189#M25521</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1448658"&gt;@samuelar&lt;/a&gt;&lt;STRONG&gt;&amp;nbsp;wrote:&lt;/STRONG&gt;&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;don't understand any of the API stuff so some HTML code that&amp;nbsp;I can change account details within or&amp;nbsp;something simple would be super&amp;nbsp;&lt;/SPAN&gt;appreciated&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;There isn't a way to do what you want with just HTML code, and there's no way to embed your account details in any code so it connects to Dropbox. Assuming it's even possible, you'd probably need to use the API and create your own code to do what you want. There's no way to do it with the regular Dropbox functionality.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2021 02:12:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525189#M25521</guid>
      <dc:creator>Rich</dc:creator>
      <dc:date>2021-06-07T02:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding files on our website</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525465#M25522</link>
      <description>&lt;P&gt;Oh ok, so now im trying to use embedder in my squarespace site: &lt;EM&gt;&lt;STRONG&gt;REDACTED &lt;/STRONG&gt;&lt;/EM&gt;using this folder link: &lt;EM&gt;&lt;STRONG&gt;REDACTED PRIVACY&lt;/STRONG&gt;&lt;/EM&gt; and the code found in the support article below but it isn't working, if this isn't to be work, can you embed the folder using HTML?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Triggering the Embedder using JavaScript&lt;/P&gt;
&lt;P&gt;Another way to use the Embedder is to embed content into a specific element using the JavaScript method Dropbox.embed(options, element). This approach can be particularly useful if you’re trying to create embedded content dynamically.&lt;/P&gt;
&lt;P&gt;The options object must contain a link and may optionally define file settings and folder settings.&lt;/P&gt;
&lt;P&gt;An example folder embed:&lt;/P&gt;
&lt;PRE&gt;    var options = {
      // Shared link to Dropbox file
      link: "&lt;EM&gt;&lt;STRONG&gt;REDACTED&lt;/STRONG&gt;&lt;/EM&gt;",
      file: {
        // Sets the zoom mode for embedded files. Defaults to 'best'.
        zoom: "best" // or "fit"
      },
      folder: {
        // Sets the view mode for embedded folders. Defaults to 'list'.
        view: "list", // or "grid"
        headerSize: "normal" // or "small"
      }
    }
    Dropbox.embed(options, element);&lt;/PRE&gt;
&lt;P&gt;By modifying these parameters, you can change the embedded content and the behavior of the Embedder:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;link - (required) - a Dropbox shared link to the content being embedded. Changing this link will update the embedded content.&lt;/LI&gt;
&lt;LI&gt;file - (optional) - a file options object used to configure embedded file behavior. May contain the following parameters:
&lt;UL&gt;
&lt;LI&gt;zoom - (optional) - a string that sets the level of zoom for embedded files. May be set to the following values:
&lt;UL&gt;
&lt;LI&gt;'best' - (default) - sets the zoom mode to best, which sets the zoom of documents to the full width of the embed container. The zoom for other file content is set to the largest dimension (height or width) of the content being embedded.&lt;/LI&gt;
&lt;LI&gt;'fit' - sets the zoom mode to fit, which will automatically set the file’s zoom to the largest dimension of the embedded content. For documents, this mode sets the zoom to the largest dimension of the first page.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;folder - (optional) - a folder options object that contains settings to configure embedded folder behavior. May contain the following parameters:
&lt;UL&gt;
&lt;LI&gt;view - (optional) - a string that sets the starting view mode for embedded folders, which may be set to one of the following values:
&lt;UL&gt;
&lt;LI&gt;'list' - (default) - starts folder in list view&lt;/LI&gt;
&lt;LI&gt;'grid' - starts folder in grid view&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;headerSize - (optional) - a string that sets the style of header to use for the embedded folder
&lt;UL&gt;
&lt;LI&gt;'normal' - (default) - use the default size header, ideal for medium- to large-sized containers&lt;/LI&gt;
&lt;LI&gt;'small' - use a smaller header, recommended for small-sized containers&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The snippet above embeds a preview of a Dropbox folder in list view:&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 00:06:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525465#M25522</guid>
      <dc:creator>samuelar</dc:creator>
      <dc:date>2021-06-08T00:06:53Z</dc:date>
    </item>
    <item>
      <title>Help embedding a folder in my site</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525466#M25523</link>
      <description>&lt;P&gt;im trying to use embedder in my squarespace site: &lt;EM&gt;&lt;STRONG&gt;REDACTED&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;using this folder link: &lt;EM&gt;&lt;STRONG&gt;REDACTED&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;and the code found in the support article below but it isn't working, if this isn't to be work, can you embed the folder using HTML? If anyone could provide the code that I can just replace links in and is fit to run that would be great. Many, many thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Triggering the Embedder using JavaScript&lt;/P&gt;
&lt;P&gt;Another way to use the Embedder is to embed content into a specific element using the JavaScript method Dropbox.embed(options, element). This approach can be particularly useful if you’re trying to create embedded content dynamically.&lt;/P&gt;
&lt;P&gt;The options object must contain a link and may optionally define file settings and folder settings.&lt;/P&gt;
&lt;P&gt;An example folder embed:&lt;/P&gt;
&lt;PRE&gt;    var options = {
      // Shared link to Dropbox file
      link: "&lt;EM&gt;&lt;STRONG&gt;REDACTED&lt;/STRONG&gt;&lt;/EM&gt;",
      file: {
        // Sets the zoom mode for embedded files. Defaults to 'best'.
        zoom: "best" // or "fit"
      },
      folder: {
        // Sets the view mode for embedded folders. Defaults to 'list'.
        view: "list", // or "grid"
        headerSize: "normal" // or "small"
      }
    }
    Dropbox.embed(options, element);&lt;/PRE&gt;
&lt;P&gt;By modifying these parameters, you can change the embedded content and the behavior of the Embedder:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;link - (required) - a Dropbox shared link to the content being embedded. Changing this link will update the embedded content.&lt;/LI&gt;
&lt;LI&gt;file - (optional) - a file options object used to configure embedded file behavior. May contain the following parameters:
&lt;UL&gt;
&lt;LI&gt;zoom - (optional) - a string that sets the level of zoom for embedded files. May be set to the following values:
&lt;UL&gt;
&lt;LI&gt;'best' - (default) - sets the zoom mode to best, which sets the zoom of documents to the full width of the embed container. The zoom for other file content is set to the largest dimension (height or width) of the content being embedded.&lt;/LI&gt;
&lt;LI&gt;'fit' - sets the zoom mode to fit, which will automatically set the file’s zoom to the largest dimension of the embedded content. For documents, this mode sets the zoom to the largest dimension of the first page.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;folder - (optional) - a folder options object that contains settings to configure embedded folder behavior. May contain the following parameters:
&lt;UL&gt;
&lt;LI&gt;view - (optional) - a string that sets the starting view mode for embedded folders, which may be set to one of the following values:
&lt;UL&gt;
&lt;LI&gt;'list' - (default) - starts folder in list view&lt;/LI&gt;
&lt;LI&gt;'grid' - starts folder in grid view&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;headerSize - (optional) - a string that sets the style of header to use for the embedded folder
&lt;UL&gt;
&lt;LI&gt;'normal' - (default) - use the default size header, ideal for medium- to large-sized containers&lt;/LI&gt;
&lt;LI&gt;'small' - use a smaller header, recommended for small-sized containers&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The snippet above embeds a preview of a Dropbox folder in list view:&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 00:08:10 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525466#M25523</guid>
      <dc:creator>samuelar</dc:creator>
      <dc:date>2021-06-08T00:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help embedding a folder in my site</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525764#M25532</link>
      <description>&lt;P&gt;To use the embedder, you will first need to create an app via the App console. With that you'll need the App Key that is located in the app console.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From there you'll want to insert this javascript&amp;amp;colon;&lt;/P&gt;
&lt;PRE class="dbprettyprint literal-block prettyprint lang-None"&gt;&amp;lt;script type="text/javascript" src="https://www.dropbox.com/static/api/2/dropins.js" id="dropboxjs" data-app-key="[&lt;SPAN class="str app-key"&gt;YOUR APP KEY]&lt;/SPAN&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Replacing [YOUR APP KEY] with the app key from your App console.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From there you can use the following html:&lt;/P&gt;
&lt;PRE class="dbprettyprint literal-block prettyprint lang-html"&gt;&amp;lt;a 
  href="[CONTENTS SHARED LINK]" 
  class="dropbox-embed"
&amp;gt;&amp;lt;/a&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Jun 2021 22:00:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/525764#M25532</guid>
      <dc:creator>tahsini</dc:creator>
      <dc:date>2021-06-08T22:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help embedding a folder in my site</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/574296#M26782</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;I tried this recommendation from Tahsini but all I get is this.&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hawkeye00_0-1643489853564.png" style="width: 400px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/27380i2E7C7005C8528D08/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hawkeye00_0-1643489853564.png" alt="Hawkeye00_0-1643489853564.png" /&gt;&lt;/span&gt;&lt;P&gt;It tries to load an iframe which is blocked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 29 Jan 2022 20:58:16 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/574296#M26782</guid>
      <dc:creator>Hawkeye00</dc:creator>
      <dc:date>2022-01-29T20:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help embedding a folder in my site</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/574568#M26790</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1514134"&gt;@Hawkeye00&lt;/a&gt; To use the Dropbox Embedder, make sure you've registered the domain(s) of your site(s) where you want to use it. You can find more information in &lt;A href="https://www.dropbox.com/developers/embedder" target="_self"&gt;the Dropbox Embedder documentation&lt;/A&gt;. You can register your "Chooser / Saver / Embedder domains" from your app's page on &lt;A href="https://www.dropbox.com/developers/apps" target="_self"&gt;the App Console&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 18:11:20 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Embedding-files-on-our-website/m-p/574568#M26790</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-01-31T18:11:20Z</dc:date>
    </item>
  </channel>
</rss>

