Multiple instances of filepicker.io on the same page? - filepicker.io

Is it possible to have multiple instances of filepicker.io on the same page?

Yes, multiple instances are allowed.

Related

Chatfuel: Creating two different chatbots that are connected to two different facebook pages

is it possible with the same chatfuel account to build two different chatbots that are connected with two different facebook pages? I want chatbot A to be connected with facebook page A, and I want chatbot B to be connected with facebook page B but I want to build them with the same chatfuel account.
If it´s possible how do I do it?
Kind regards
Of course you can do that. As you can get many facebook page you can have many chatfuel bots connected to them.

Separate cookies when loading separate WKWebViews?

In my app, I have multiple WKWebViews that can visit the same social network pages. But I want to allow users have multiple accounts on those pages. Right now when two webviews go to the same network, it logs into the same account.
Is there a way to load different accounts when accessing different wkwebviews?
Thank you
you should be able to do this if you force him to log out every time he opens a new page of the same social network.

Facebook Custom Audience pixel on multiple websites

I have one Facebook Ads account and two different e-commerce websites (which I own/manage).
I would like to make separate custom audiences based on users which visit specific URLs on two separate websites/domains and then create two SEPARATE ads that can retarget (separately) those groups/audiences.
Can I use one Custom Audience pixel and use it on two separate websites/domains?
Yes - you can use the same pixel on both sites, then create audiences from it based on the url. Here's more information on how this works: Facebook: Configure your Audience Rules

How can I create two different isntance of connection to Facebook?

I need to have two different Facebook connection on the same website! So, they points to two different Application Keys.
How can I manage this?
This isn't something Facebook JavaScript SDK supports and this can't be simply achieved by storing FB object in other variable before adding another instance of SDK.
In the code of SDK FB is used directly pretty everywhere, and the response from API will use it too.
BTW, Even if it was possible your users would be needed to Authorize two applications if you want to access their data (transfer of data from one application to another violate platform policies).
As #JuicyScripter wrote, the js sdk itself can not be shared among different apps in the same document, and that's exactly what you can try to play with.
How about adding an iframe per fb app?
You have the main page (the +1) which acts as usual, then you load an iframe inside of it and in it you can load another fb sdk for a different application.
Depending on what exactly you plan on doing, you might need to communicate between iframes, which will only work if they share the same domain.
Another approach is to make all api requests from the server side, but you'll have to have an access token for the user per app.

Add application in Facebook pages tab/link

Is there any way to add applications in Facebook pages dynamically(using api)?
The best thing you can do right now is to redirect to this URL:
http://www.facebook.com/add.php?api_key=<your_api_key>&pages
(note the &pages at the end)
This at least provides a shortcut for them to add the app to one of their pages. Of course not as good as a proper API...
Unfortunately not. Facebook creates a unique Application ID etc. when you create your application via their site. There is no access to this process.