Questions tagged [custom-url]

A custom url is a url that deviates from whatever is the default url

Many web frameworks and other web related tools mandate a certain default way of generating urls. If this kind of url does not fit your needs, you are looking of a custom url.

Questions inquiring how to create certain kind of custom-urls with a given framework, or about the effects of using such urls should be tagged with custom-url

196 questions
5
votes
1 answer

AirDrop Sharing - Custom URL Scheme or Website URL

My next problem is the following: I have an app that shares via AirDrop a custom URL scheme: NSMutableString *mutableString = [NSMutableString stringWithString:@"appName://"]; [mutableString appendString:contentProduct.url]; NSURL…
Durican Radu
  • 1,327
  • 11
  • 12
5
votes
1 answer

Wordpress Plug-ins: How-to add custom SEO friendly URL Handles

I was wondering if its possible to use the permalink settings in plugins instead of them using default non permalink urls. For example i'm using the plugin flickr photostream which is downloadable from here…
AeroMaxx
  • 213
  • 2
  • 9
4
votes
4 answers

Restfull urls for ASP.NET page on IIS

Ok I had a huge Issue giving this a proper title, my excuses for that. Anyways I have started slowly to look at Web and ASP.NET again, I am a C# developer but I have mostly worked with Windows applications the past 5 years or so, It is not that I…
Jens
  • 3,353
  • 1
  • 23
  • 27
4
votes
0 answers

IOS iphone - open native app from browser with appstore URL fallback

I am trying to display a message on some of my website pages for the user to open the current page in the mobile app. I have implemented universal links for specific paths in my website and when the app is installed, the URLs are opened correctly in…
Andrei F
  • 4,205
  • 9
  • 35
  • 66
4
votes
1 answer

Xamarin (Android/iOS) Deep Linking - Opening App via URL (custom or not)

I have made a web with Sharepoint and Office365, and an app with Xamarin for Android and iOS. Users recieve notifications in their emails, with some URLs from my web attached to it. When opening these URLs from the mobile, I want to open them into…
sesitosVDX
  • 41
  • 1
  • 7
4
votes
1 answer

This app is not allowed to query for scheme XYZ://

You might think it's a duplicate question, but it's not, I'm totally aware of all the answers on SO about the canOpenURL and its caveats on iOS 9, but here is my problem: I'm trying to check if an specific app is installed on my device (both…
M. Porooshani
  • 1,797
  • 5
  • 34
  • 42
4
votes
2 answers

custom URL scheme does not work when app is not running in background

I am calling a custom URL from safari to launch an app. It works fine if the app is running in background. But when the app is not running in background , but is already installed on the device, the app does not launch. I have implemented both of…
XYZ
  • 597
  • 1
  • 7
  • 19
4
votes
2 answers

iOS custom url scheme

I'm creating an app that uses a custom url scheme, I have it all set up and it works when opening the app up, however, I now want to be able to add a single string to the url so that the person that opens the app can see that string. I'm really…
4
votes
1 answer

Send link with custom scheme through Gmail

I'm trying to send a deep link that opens my Android app: String body = "Link to simulation"; Intent emailIntent = new…
NickF
  • 5,637
  • 12
  • 44
  • 75
4
votes
1 answer

ios: how to detect if a custom url scheme link failed?

I have an HTML page containing a link to a custom URL scheme, displayed on iPhone .e.g myapp://localhost/ Assuming the user clicks it, but there is no app that can respond to this scheme, how do I catch this in javascript (that the link cannot be…
Sagi Mann
  • 2,967
  • 6
  • 39
  • 72
3
votes
2 answers

Custom short URLs in Joomla 1.5

I had a long ugly long URLs for Joomla articles. Being advised here to enable SEF, I got: www.domain.com/cat1/subcat1/120-results-of-DES-project-in-2011 Nicer, but I also want custom short URL for specified article, like: www.domain.com/des Is…
Tomas
  • 57,621
  • 49
  • 238
  • 373
3
votes
1 answer

Link on Facebook with custom prefix/protocol (like myapp://blahblah)

I added to my iOS application option to detect and response to custom URL schemes to launch application ( http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html ). Link is working perfectly on different sites…
user1073352
  • 43
  • 1
  • 4
3
votes
1 answer

custom URL protocol for Cocoa Mac with Qt

I'm trying to use a custom URL protocol to launch my Qt (4.7.3) application. I've already got it working for Windows, so now it is time for the Mac. I've already done the necessary changes to the Info.plist, and have the application being launched…
user845351
  • 31
  • 2
3
votes
1 answer

Is there a way to disable "Open in [App Name]" suggestion when you tap the link on chrome?

Every link that is related to our domain, opens a popup that suggest opening the app. We recently tried to get rid of it but we couldn't manage to do it. I am not very experienced in this topic. Excuse my ignorance. I assume it is related to…
3
votes
0 answers

How to use page ID to custom URL for Wagtail

I don't like to use title in URL, this is not succinct. default: http://example.com/work/[my-work]/ how to change it to: http://example.com/work/[page_id]/ like this: http://example.com/work/18
1
2
3
13 14