<?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: Can't get embedder to work in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623825#M2897</link>
    <description>&lt;P&gt;Thanks for your quick response!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Got it to work. There was a typo in my js &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just a few other questions.&lt;/P&gt;&lt;P&gt;Are there any other parameters for removing full screen etc?&lt;/P&gt;&lt;P&gt;Is it possible to have the embedder not in an iframe?&lt;/P&gt;&lt;P&gt;Lastly, is there a way to disable the dropbox logo or label it with another logo?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Bram&lt;/P&gt;</description>
    <pubDate>Tue, 20 Sep 2022 18:29:57 GMT</pubDate>
    <dc:creator>bramroos</dc:creator>
    <dc:date>2022-09-20T18:29:57Z</dc:date>
    <item>
      <title>Can't get embedder to work</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623520#M2894</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to get the embedder to work. I'm able to display a single file through the anchor tag but I would like to use the embedder. Could not find the answer on this forum unfortunately. The following is not working for me. Is there something I'm missing?&lt;/P&gt;
&lt;P&gt;Working on localhost and Wordpress development.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;script type="text/javascript" src="https://www.dropbox.com/static/api/2/dropins.js" id="dropboxjs" data-app-key="appkey"&amp;gt;&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;script type="text/javascript"&amp;gt;
	var options = {
	// Shared link to Dropbox file
	link: "https://www.dropbox.com/sh/tcvwr7atlybzb2f/AAArhYK6_____n8P-SDeRRzZa?dl=0",
	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);

&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;Hoping for some clues.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Many thanks,&lt;/DIV&gt;
&lt;DIV&gt;Bram&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Sep 2022 23:54:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623520#M2894</guid>
      <dc:creator>bramroos</dc:creator>
      <dc:date>2022-09-19T23:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get embedder to work</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623523#M2895</link>
      <description>&lt;P&gt;Can you elaborate on what you mean when you say it is "not working"? For example, what error or unexpected output or result do you get? Make sure you check the JavaScript console for any errors, for instance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking at the code you shared here, I don't see where "element" is defined. Do you have that defined? That needs to the be element on your page where you want to put the Embedder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, if you have an element on your page like this:&lt;/P&gt;
&lt;PRE&gt;&amp;lt;div&amp;nbsp;id="embedder_container"&amp;gt;&amp;lt;/div&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you might define 'element' like this:&lt;/P&gt;
&lt;PRE&gt;var element = document.getElementById("embedder_container");&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 19:27:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623523#M2895</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-09-19T19:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get embedder to work</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623825#M2897</link>
      <description>&lt;P&gt;Thanks for your quick response!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Got it to work. There was a typo in my js &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just a few other questions.&lt;/P&gt;&lt;P&gt;Are there any other parameters for removing full screen etc?&lt;/P&gt;&lt;P&gt;Is it possible to have the embedder not in an iframe?&lt;/P&gt;&lt;P&gt;Lastly, is there a way to disable the dropbox logo or label it with another logo?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Bram&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 18:29:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623825#M2897</guid>
      <dc:creator>bramroos</dc:creator>
      <dc:date>2022-09-20T18:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get embedder to work</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623828#M2898</link>
      <description>&lt;P&gt;Thanks for following up. I'm glad to hear you got this working.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And no, there aren't options for making customizations like those. All of the available options are listed in &lt;A href="https://www.dropbox.com/developers/embedder" target="_blank"&gt;the documentation here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 18:37:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Can-t-get-embedder-to-work/m-p/623828#M2898</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-09-20T18:37:56Z</dc:date>
    </item>
  </channel>
</rss>

