Dropbox is not displayed in the filepicker dialog window - filepicker.io

we are using filepicker and it works fine. But we are not able to upload the files by using the dropbox as it is not displayed in the filepicker dialog window.
we set the services as
services: ['COMPUTER', 'GMAIL', 'DROPBOX', 'SKYDRIVE', 'CUSTOMSOURCE'],
we are able to see all other except dropbox.
Any help on this is highly appreciated

From some time Filepicker require your own Dropbox app to connect. So first you need to create Dropbox app, then set dropbox keys in filepicker panel.
Here you can find more details https://developers.filepicker.com/docs/support/integration/3
https://www.filepicker.com/documentation/services/dropbox_doc

Related

TWA bases app sometime showing URL and sometime working, even Assetlink.json uploaded properly

I have website (https://www.kriscent.com/product/kart-supermarket/). I created PWA of that after that I uploaded it on Play store by using TWA(Trusted Web Activities), App URL is https://play.google.com/store/apps/details?id=in.kriscent.kartlite.
The URL of website always show in app, So I uploaded the assetlink.json (URL: https://www.kriscent.com/.well-known/assetlinks.json).
After uploading the assetlinks.json, When I run my app, the website URL disappeared but when I switched on other link in the app then the URL shows again.
I don,t know what is happening. Please help me if anybody has idea to resolve this issue.
enter image description here
enter image description here
The problem is that, when navigating to a product detail page, you are using a different origin than the one used to open the Trusted Web Activity and that doesn't have Digital Asset Links setup:
When the application is started, it opens https://www.kriscent.com/, which is correctly validated.
When clicking on a product, the user is take to https://kriscent.com/ (without www), which is a different origin, and is not validated in the Android app.
It is possible to get the Trusted Web Activity to work with multiple origins but, in this case, I'd recommend using a single origin for the initial URL and the navigations, as you will be able to take advantage of using the same service worker, browser storage, etc.

Get urls of files uploaded through dropbox api saver

Can i get preview/direct links to the files in my drop box account after i have uploaded them through saver API of drop box . I am trying is that if user uploads files to drop box account using saver API then the direct links to the recently added files appear on the app with the drop box icon alongside . So the user can download it through my app without having to accessing it from drop box .
No, the Saver doesn't return links to the new files in Dropbox. But if you used the Saver, then you already have URLs for the saved files, so why not just show those? Maybe I'm misunderstanding the scenario.

How to add facebook-ios-sdk in app for login and fetch user data

I want to integrate the facebook login dialog in my app. For that i have checked the facebook developer page to integrate it.
1 - Downloaded facebook sdk package and installed it
2 - added facebook.framework and FBUserSettingsViewResources.bundle in my app
3 - and use its SessionLoginSample
Its running and user can do login using facebook but its open in safary instead of that i want to open it in dialog box.
Answer in here says that do change in facebook.m file but my project does not have it. for that i have downloaded facebook-ios-sdk project from the GITHub and in that project from src folder i have copied all file in my project. Its non arc so added flag fno-objc-arc.
But facebook.m file does not contain that code which answer suggested to change. And also i have implemented graph GraphApiSample but it display error in FBLoginView.
So plz help on this topic any code or tutorial will be highly appreciable.
If you want to open the login page within your app you have to use the FBGraphAPI .
If you want to force the web dialog, you need to specify the login behavior.
If you look in FBSession, there are many methods to open a Session, many of which will take an FBSessionLoginBehavior parameter. If you pass in FBSessionLoginBehaviorForcingWebView for the login behavior, it will force the web view dialog.

How do I set files uploaded with filepicker.io to s3 from other services (facebook, instagram, etc...) as public

in the store_options that I provide to pickAndStore, setting:
access: 'public'
works to make the uploaded file public for files i upload from my computer.
When I upload a file through the modal dialog from, say, facebook or instagram, the file uploaded to s3 has not been set as public. S3 returns a 403 Forbidden when I try to access my file.
Am I missing something, or is this a bug on filepicker's end?
Filepicker dev here. There was a bug on our side that has now been fixed. Thanks for the patience.

Phone gap ios app - show pdf file with print/email options

I have a requirement to do the following task.
Inside a Phonegap iOS app, the user wants to view a pdf file after clicking a link which will load the pdf from the remote server.
And also user needs print, email functions with this document viewer.
So far I have tried following options.
Exit from the app when user click on the link and try to load the pdf throught the Safari. This is not working because user has to relogin for viewing the application.
Check with child-browser plugin. But it does not provide the options like print/email.
It'll be really great if some one can help on this who has similar experience.
Thanks