I have an old link to a public dataset: https://bigquery.cloud.google.com/table/bigquery-samples:reddit.full. However, it now points to a deprecation of old UI page with a link to Google Cloud console. How can I access this dataset through URL or find it in the new UI?
Click on that link to console and than change value of the project attribute in querystring to be a bigquery-samples. open this "new" link and bigquery-samples project will now appear in the explorer (or just use this link https://console.cloud.google.com/bigquery?project=bigquery-samples).
Now, pin the project so next time it will be also available for you
Related
I need a dynamic link (short url) that:
on mobile:
when app is installed -> open app
when app is not installed -> open store
on desktop:
open specific web url
I managed to get it working for the mobile part. However, on desktop it also opens the deeplink for the app. The documentation states to use the OFL parameter for that. Now if I manually add this parameter to the long url everything works as expected but I need a short url. How can I add this parameter via Firebase Console directly?
Cheers
The 'ofl' feature is not yet available for Dynamic Links created via the Firebase console. Currently, this is only possible with Manual URL construction dynamic link. The idea is to add the "ofl" parameter to the url to make the FDL redirect another URL on the desktop, like displaying a full web page of the app content.
I faced the same problem and i fixed it by using the property longDynamicLink that the DynamicLinkParameters object provides as they said in documentation:
/// Set the long Dynamic Link when building a short link (i.e. using `buildShortLink()` API). This allows the user to append
/// additional query strings that would otherwise not be possible (e.g. "ofl" parameter). This will not work if using buildLink() API.
final Uri? longDynamicLink;
My team released an Android app and asked for a smart banner directing users from our website to the app and specific content; to complete this task, we are using branch.io.
According to this guide, I inserted the JavaScript snippet with the branch key found in the settings section of the dashboard and the SDK is correctly initialized.
In the dashboard we defined the styling of the banner and on which sites and devices it should appear. But the banner looks like this (on desktop):
No icon or text are set. Apparently when I use the preview link generated by branch.io it is displayed correctly.
Moreover when I initialize the banner via JavaScript and set the properties it is displayed correctly too:
branch.banner(Banner.options, Banner.data);
const deeplink = `${window.location.pathname}${window.location.search}${window.location.hash}`;
branch.setBranchViewData({
'$deeplink_path': deeplink
});
Somehow nothing from the dashboard is adopted.
Thank you for your help!
Alex from Branch.io here: the branch.banner() function and the banner you set up on the dashboard are actually separate things. The dashboard option replaced the banner() approach, which has been deprecated.
You'll want to review the full details in the set up guide. One important note is that the dashboard version does not yet support banners on desktop, as we found almost none of our partners were using that function.
Try smartbanner.js. Has a lot of custom options and behaviour at very low footprint (~ 13 KB). Takes a few meta tags to set up.
I need to open links like this
http://somedomen.com/someplaylist.m3u8
in external videoplayer.
I can't find the specific url scheme for this to Linking (so
Linking.openURL('video:http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4');
not works
Linking.openURL('intent://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4#Intent;action=android.intent.action.VIEW;scheme=http;type=video/mp4;end');
not works too
)
I trying the module https://www.npmjs.com/package/react-native-intent with some modifications of mine.
It works, but when the external player opens and I press the BACK button - application closes without errors. I think that the new intent creates in the same activity.
So my question:
Is there any way to open video links with external player (like share works but user need to select from video players installed on the system to open shared link with the selected one).
Finally got it to work with this module http://npmjs.com/package/react-native-intent-launcher
I am developing and android app, where i want to get all files from drop box. Now i can retrieve all files from drop box and display it in List View. Now i want to open/display the file when i click on the List View. I don't know how to open Dropbox file, with which manager or which method??? please help
I was using this method to open/display Google Drive file, but i don't know how to use the same method here for Dropbox.
String ur = "https://docs.google.com/file/d/"+fileID;
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(ur));
startActivity(i);
Unfortunately this is not possible.
I posted in their forums and got a negative response. Hopefully it'll be functionality they look to support soon.
I'm following the instructions at https://developers.google.com/+/quickstart/php
The first three parts of step 1 are fine, but I cannot complete the 4th part because I cannot see "Registered Apps" in the sidebar on the left.
Step 1: Enable the Google+ API
Create a Google APIs Console project, OAuth 2.0 client ID, and register your JavaScript origins:
To register a new application, do the following:
Go to the Google Cloud Console.
Select a project, or create a new one.
In the sidebar on the left, select APIs & auth. In the displayed list of APIs, make sure the Google+ API status is set to ON.
In the sidebar on the left, select Registered apps.
The documentation has not been updated for the newer Console.
IIRC, you can simply skip this step - check if is works for you this way.
Or try older Console, it still works: https://code.google.com/apis/console/