How to include UPI Deeplink URL in Google Sheet - google-sheets

how to make upi payment QR code using google sheet
i want to make a QR code like
upi://pay?pa=1234567890000#sbin1234567.ifsc.npci&pn=Name&am=100&tn=Testing&cu=INR

try like this:
=IMAGE("https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl="&ENCODEURL(B10))

Related

How can we get deep link url from firebase dynamic link short url programmatically?

I have QR code made by firebase dynamic link (short URL) which will redirect to the App Store/Play Store directly to download the app and read the deep link query parameters when launching the app for the first time. That works well as expected.
But, The situation is, if I scan the same QR code within the app, Simply I want just query parameters passed in the deep-link URL or long URL which contains all that I want.
Any inputs? Thanks in advance!
Actually I also experienced like your problem.
QR code reader can not parse query parameters passed in the deep-link long URL.
[Before]
http://xxx.page.link/?link=https://www.google.com/doodles/
But if you use url encoded parameter, QR code can read that long deep link.
[After]
http://xxx.page.link/?link=https%3A%2F%2Fwww.google.com%2Fdoodles%2F

There any way to open *UberEats* app in a specific restaurant page using URL Schemes or anything else?

There any way to open UberEats app in a specific restaurant page using URL Schemes, Deep link, SDK or anything else?
I found that and works with current version. Url schema:
ubereats://
on the current app you can share a store item and the deeplink is:
ubereats://store/browse?client_id=eats&storeUUID={STORE_UUID}&itemUUID={ITEM_UUID}
or simply open the store:
ubereats://store/browse?client_id=eats&storeUUID={STORE_UUID}
or apply a promo code:
ubereats://promo/apply?client_id=eats&promoCode={PROMO_CODE}
I hope to help
For me this works:
ubereats://promo/apply?client_id=${uberEatsClientKey}&promoCode=${PromoCode}
It's the same as Uber. You can check the documentation of Uber.

How to get the Instagram Media_ID of video In Ios.?

I'm am looking for the MediaID of an Instagram video which has been uploaded. It should look like
1234567894561231236_33215652
I use the instagram document #" https://www.instagram.com/developer/embedding/ but this are done by manually..?
I want this programatically using Instagram API or any other way..?
please help me?
You can use this API:
https://api.instagram.com/v1/media/shortcode/{short-code}?access_token=ACCESS-TOKEN
https://www.instagram.com/developer/endpoints/media/#get_media_by_shortcode
{short-code} is the code in Instagram URL: for example BOn2hFYjz5a in https://www.instagram.com/p/BOn2hFYjz5a/

Searching locations with name in google maps sdk in ios

I am using Google map sdk in my project. I have search bar at top and I have to search the location that user enter in that search bar. Secondly search bar should give hints like if we search location in Google maps application.Any help will be appreciate able.
Prerequisites
Google Places API KEY
Get Started with GOOGLE PLACE API on iOS
STEPS
You need to create an url using the text entered in your textfield.
Append the text from textfield the create an url like this
NSURL *URL = [NSURL URLWithString:[NSString stringWithFormat:#"https://maps.googleapis.com/maps/api/place/textsearch/json?query=%#&key=%s",queryText,kGooglePlaceAPIKey]];
where queryText is the text, and kGooglePlaceAPIKey is your GOOGLE PLACES API KEY.
Do JSON Parsing on this URL.
You will get the information of all location related to the text entered in your textfield.
Figure : JSON Response on Firefox Browser using JSONViewer Addon
FOR MORE INFORMATION REFER THIS SITE : Google Places Text Search Requests
Hope it helps You
Cheers
:)

Back button on google maps ios

My Iphone app needs to open the google maps application to use the StreetView and the directions mode.
All works fine,But my question is, is there any way of adding a button or something to go back to my app?. I have seen that with UIWebViews maybe thats the only solution..
Thanks in advance
My answer comes from this documentation: Google Maps SDK for iOS, Google Maps URL Scheme
You may add a back button if you register a custom URL scheme for your app and use the comgooglemaps-x-callback:// url scheme to launch the Google Maps iOS app.
Here is a great tutorial for iOS Custom URL Schemes.
The following string would open Google Maps with directions to JFK airport and would add a button in Google Maps with the title "AirApp".
Touching that button would call the custom url scheme sourceapp:// which you would set up by following the tutorial I linked to above.
#"comgooglemaps-x-callback://?daddr=John+F.+Kennedy+International+Airport,+Van+Wyck+Expressway,+Jamaica,+New+York&x-success=sourceapp://?resume=true&x-source=AirApp"

Resources