Questions tagged [x-callback-url]

The goal of the x-callback-url specification is to provide a standardized means for iOS developers to expose and document the methods they make available to other apps.

Using x-callback-url’s source apps can launch other apps passing data and context information, and also provide parameters instructing the target app to return data and control back to the source app after executing an action.

Additional information including specification and examples at: x-callback-url.com.

24 questions
0
votes
1 answer

Is there a way to x-callback from Telegram to another app?

I am creating a Telegram bot and need to x-callback to another application. This is my x-callback that opens VLC and streams a video. It works fine when I use it in Siri Shortcuts or in Safari. But I need it to work on Telegram chat…
0
votes
1 answer

What is a callback url for an API and when and how do you use one in python

I am using an API and it asks for a "callback url". What is a "callback url" and when and how do you set one up in Python
0
votes
1 answer

Does X-CallBack work in Background thread?

I am constructing a xcallBack Url like this "\(scheme)://x-callback-url\(path)?x-source=ApName&ResponseData=\(base64str)" and after constructing i had open url method UIApplication.shared.open(callbackUrlN!) { (result) in if result { …
Mohan
  • 1
  • 1
0
votes
0 answers

how to close App1 after opening App2?

I have two apps - App1 and App2, and they communicate using x-callback-url protocol. My question is - how to close 'sender' App1 after calling App2? I don't need kill App1 when it's go background, only kill from specific function/viewcontroller in…
nastassia
  • 807
  • 1
  • 12
  • 31
0
votes
1 answer

How do I perform ios "open with" from python code?

With Pythonista I can easily produce a file which will be saved in the Pythonista file system. If it has the appropriate file ending, in this case ".gpx", accessing that file will call up the ios dialog "open with" and a list of possible apps. Is it…
djl
  • 15
  • 4
0
votes
0 answers

Getting the response from a callback url angular

In my app i have to redirect to an external url using window.location.href, this is in order to let the user authenticate in google adwords as shown in the picture below Once the user authorize the app it will be redirected to a callback url that i…
sila
  • 179
  • 4
  • 14
0
votes
1 answer

giving error on using localhost on twitter application built with mvc

i am using using identity 2.0 OAuth in my web app ... when i enter http://localhost:61089/ in application setting : it is giving error invalid URL format format values entered here:
user4008999
0
votes
2 answers

Launch center pro, skype and the clipboard

I am trying to create an action in Launch Center Pro. It should launch Skype, and call the number in the clipboard. The built in wizard gives this: skype:[clipboard]?call That opens Skype, which then asks me if I want to call a URL encoded version…
ttt
  • 33
  • 4
0
votes
1 answer

How to launch the app that launched my app

I'm using this function in my app, to handle calls from other applications: (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation I need to understand how…
taxman
  • 501
  • 11
  • 21
1
2