Search results for

“file uri scheme”

84,438 results found

Post

Replies

Boosts

Views

Activity

Safari drops 'lr' parameter from the URI (google.com). How to make it stay?
Hi all, I want to be able to query Google with the additional parameter '&lr=-lang_en' (what it does - prevents results in English from being shown). The full url is looking as follows: https://www.google.com/search?q=query&lr=-lang_en In Safari version 16.4, and I think a few earlier versions too, Safari overrides query parameters and drops 'lr' completely. The URI Safari ends up fetching is: https://www.google.com/search?client=safari&rls=en&q=query&ie=UTF-8&oe=UTF-8 I've tried entering the URI manually in the address bar and using the declarativeNetRequest API from my custom extension with no success. Is there a way to make Safari 16.4 to request Google Search the way I want? declarativeNetRequest rule I've used so far that also gets overriden: await browser.declarativeNetRequest.updateDynamicRules({ addRules: [ { id: 1, priority: 1, action: { type: 'redirect', redirect: { transform: { queryTransform: { addOrReplaceParams: [{ key: 'lr', value: '-lang_en' }], }, },
0
0
3.2k
May ’23
Reply to MacOS app - Detecting\Reading from storage devices
Whole files, if that's the case could I use the FileManager - https://developer.apple.com/documentation/foundation/filemanager class, accessing the URI of the mounted volume? From my very small knowledge and what I've been reading online, I would need to use the IOServiceAddMatchingNotification to register a callback to get notified of any new device driver being created in the I/O Registry. I do not know how to match specifically the devices I want ( USB storage drives ), and neither if I could access a property in the Registry that would map to the URI accessible via FileManager; assuming the FileManager would indeed serve to read the files in there. I had probably missed entirely in my understanding, my apologies if that's the case. Any guidance is appreciated, thanks for bearing with me!
Topic: App & System Services SubTopic: Drivers Tags:
Jul ’20
SystemPreferences URL Scheme
We often need to guide users to open system preference panels to grant software permissions. From network archives, we found some URL Schemes for system settings panels that correctly allow users to quickly access specific settings locations directly from the software UI. Recently, we needed users to grant software permissions in System Preferences - Security & Privacy - App Management. However, I cannot find the URL Scheme for this panel. Could the developers provide it? Below are some of the existing panel URL Schemes for reference: • System Preferences: x-apple.systempreferences: • Network: x-apple.systempreferences:com.apple.preference.network • Sound: x-apple.systempreferences:com.apple.preference.sound • Displays: x-apple.systempreferences:com.apple.preference.displays • Security & Privacy: x-apple.systempreferences:com.apple.preference.security • Accessibility: x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility
1
0
1.3k
Aug ’24
Certificate Authentication is Broken When We are using Universal link based Redirect URI
Before explaining the problem let me give the specifications. We are using SFSafariViewController and OAuth 2.0 mechanism for authentication. Also we are using Universal Link based Redirect URI. I have uploaded the AASA file in the particular domain as expected for Universal Link. Also checked that it is getting downloaded when I am installing the app in the device. And our device got MDM profile provided by our organisation. Now coming to the issue: When I am onboarding with my app, onboarding is successful, if I don't opt for certificate(picked up from the MDM) authentication. But, if I opt for certificate authentication after providing the certificate identity to the idp the callback is not happening. It stays in the SFSafariViewController. The expected behaviour is to resume the NSUserActivity of the app through appdelegate. Any idea how to resolve this?
0
0
482
Aug ’20
Certificate Authentication is Broken When We are using Universal link based Redirect URI
Before explaining the problem let me give the specifications. We are using ASWebAuthenticationSession and OAuth 2.0 mechanism for authentication. Also we are using Universal Link based Redirect URI. I have uploaded the AASA file in the particular domain as expected for Universal Link. Also checked that it is getting downloaded when I am installing the app in the device. And our device got MDM profile provided by our organisation. Now coming to the issue: When I am onboarding with my app, onboarding is successful, if I don't opt for certificate(picked up from the MDM) authentication. But, if I opt for certificate authentication after providing the certificate identity to the idp the callback is not happening. It stays in the Safari. The expected behaviour is to resume the NSUserActivity of the app through appdelegate. Any idea how to resolve this?
0
0
492
Aug ’20
location.href = <relative path> uses custom scheme/domain
Hi,We have an application that uses Safari/Apple webkit ( Mac OS 10.8 and later - Netscape - browser: safari - version: 5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Safari/536.30.1 - userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Safari/536.30.1 ) to show web content. Our application loads a custom scheme URI say cec://engine/load.init.htmlOur application registered the custome scheme protocol with the webkit cec:// so that appropriate handler is triggered in our code to handle the loading of load.init.html.Within the load.init.html, code, we redirect to a dynamic page from web:<html>...<body><script type=text/javascript>location.href = https://api.cec.com;</script></body></html>Upon loading the above page it redirects to https://api.cec.com:The api.cec.com executes some javascript which sets a relative URL backlocation.href = Authenticate/opi/.....;Now it tries
0
0
591
Sep ’16
Url scheme not working on iOS 9.3.3
Hello developers.I have a huge problem that I can't understand well. Till now I have implemented url schemes to redirect from browser to my application and In that moment I download something for application. Why now in some devices this thing is already working and in some other is not working. I read that apple changed something, they put Universal linking. Does this thing is creating my problem, can I replace uri schema with universal linking. As i saw universal linking is just for opening application and not having a method for handling to do specific things ?!
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
413
Jul ’16
Build scheme for App disappears.
Hi. I am developing an App with Network Extension, and when I use git stash or checkout, the Build scheme for App disappears and only the Build scheme for Extension remains. When I restart Xcode, the Build Scheme for App appears, but it is hard to restart it every time. So, please tell me how to solve this problem. Now I'm using Xcode Version 14.0.1 (14A400) on macOS12.6.
0
0
436
Oct ’22
Reply to FPS - Client test SDK
Is it normal that we doesn’t receive any error when the avplay is parsing the m3u8 and especially the uri “malformed” field ?Do we need to manage a new uri type in our resource loader delegate (such skd type) ?
Topic: Media Technologies SubTopic: Streaming Tags:
Replies
Boosts
Views
Activity
Jul ’15
Safari drops 'lr' parameter from the URI (google.com). How to make it stay?
Hi all, I want to be able to query Google with the additional parameter '&lr=-lang_en' (what it does - prevents results in English from being shown). The full url is looking as follows: https://www.google.com/search?q=query&lr=-lang_en In Safari version 16.4, and I think a few earlier versions too, Safari overrides query parameters and drops 'lr' completely. The URI Safari ends up fetching is: https://www.google.com/search?client=safari&rls=en&q=query&ie=UTF-8&oe=UTF-8 I've tried entering the URI manually in the address bar and using the declarativeNetRequest API from my custom extension with no success. Is there a way to make Safari 16.4 to request Google Search the way I want? declarativeNetRequest rule I've used so far that also gets overriden: await browser.declarativeNetRequest.updateDynamicRules({ addRules: [ { id: 1, priority: 1, action: { type: 'redirect', redirect: { transform: { queryTransform: { addOrReplaceParams: [{ key: 'lr', value: '-lang_en' }], }, },
Replies
0
Boosts
0
Views
3.2k
Activity
May ’23
Reply to MacOS app - Detecting\Reading from storage devices
Whole files, if that's the case could I use the FileManager - https://developer.apple.com/documentation/foundation/filemanager class, accessing the URI of the mounted volume? From my very small knowledge and what I've been reading online, I would need to use the IOServiceAddMatchingNotification to register a callback to get notified of any new device driver being created in the I/O Registry. I do not know how to match specifically the devices I want ( USB storage drives ), and neither if I could access a property in the Registry that would map to the URI accessible via FileManager; assuming the FileManager would indeed serve to read the files in there. I had probably missed entirely in my understanding, my apologies if that's the case. Any guidance is appreciated, thanks for bearing with me!
Topic: App & System Services SubTopic: Drivers Tags:
Replies
Boosts
Views
Activity
Jul ’20
url scheme safari
what is the url scheme safari ? I tried this way: window.open(`com-apple-mobilesafari-tab:https://mysite.ao}/?a`, '_blank', 'popup');
Topic: Safari & Web SubTopic: General Tags:
Replies
1
Boosts
0
Views
2k
Activity
Sep ’23
SystemPreferences URL Scheme
We often need to guide users to open system preference panels to grant software permissions. From network archives, we found some URL Schemes for system settings panels that correctly allow users to quickly access specific settings locations directly from the software UI. Recently, we needed users to grant software permissions in System Preferences - Security & Privacy - App Management. However, I cannot find the URL Scheme for this panel. Could the developers provide it? Below are some of the existing panel URL Schemes for reference: • System Preferences: x-apple.systempreferences: • Network: x-apple.systempreferences:com.apple.preference.network • Sound: x-apple.systempreferences:com.apple.preference.sound • Displays: x-apple.systempreferences:com.apple.preference.displays • Security & Privacy: x-apple.systempreferences:com.apple.preference.security • Accessibility: x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility
Replies
1
Boosts
0
Views
1.3k
Activity
Aug ’24
URL scheme on tvOS
How to create a new URL Scheme on tvOS?http://eduardosanti.com.br/scheme.png
Replies
1
Boosts
0
Views
839
Activity
Jul ’16
Refferal Scheme cost
On a premium based app, if subscriptions to the app are offered free as part of a refferal scheme; does Apple still take commission on that free subscription?
Replies
0
Boosts
0
Views
294
Activity
Apr ’17
Certificate Authentication is Broken When We are using Universal link based Redirect URI
Before explaining the problem let me give the specifications. We are using SFSafariViewController and OAuth 2.0 mechanism for authentication. Also we are using Universal Link based Redirect URI. I have uploaded the AASA file in the particular domain as expected for Universal Link. Also checked that it is getting downloaded when I am installing the app in the device. And our device got MDM profile provided by our organisation. Now coming to the issue: When I am onboarding with my app, onboarding is successful, if I don't opt for certificate(picked up from the MDM) authentication. But, if I opt for certificate authentication after providing the certificate identity to the idp the callback is not happening. It stays in the SFSafariViewController. The expected behaviour is to resume the NSUserActivity of the app through appdelegate. Any idea how to resolve this?
Replies
0
Boosts
0
Views
482
Activity
Aug ’20
Certificate Authentication is Broken When We are using Universal link based Redirect URI
Before explaining the problem let me give the specifications. We are using ASWebAuthenticationSession and OAuth 2.0 mechanism for authentication. Also we are using Universal Link based Redirect URI. I have uploaded the AASA file in the particular domain as expected for Universal Link. Also checked that it is getting downloaded when I am installing the app in the device. And our device got MDM profile provided by our organisation. Now coming to the issue: When I am onboarding with my app, onboarding is successful, if I don't opt for certificate(picked up from the MDM) authentication. But, if I opt for certificate authentication after providing the certificate identity to the idp the callback is not happening. It stays in the Safari. The expected behaviour is to resume the NSUserActivity of the app through appdelegate. Any idea how to resolve this?
Replies
0
Boosts
0
Views
492
Activity
Aug ’20
Color scheme of the Model.
hey, great tech. what does the color scheme encode on the model(greenish to blueish). just asthetics?
Replies
1
Boosts
0
Views
341
Activity
Jun ’20
Reply to autorize page constantly shows 'invalid_request'
Found one more drawback: seems multiple redirect URIs also don't work - at least in my case until i had previously configured too long redirect URI the shorten one didn't work for me also.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’19
Reply to Can't retrieve name and email from Sign In flow
Currently the email address is provided to the application front-end through the post to the redirect uri but in post repose to redirect uri we are getting only state, id_token and code. How can i get the email address?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’19
location.href = <relative path> uses custom scheme/domain
Hi,We have an application that uses Safari/Apple webkit ( Mac OS 10.8 and later - Netscape - browser: safari - version: 5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Safari/536.30.1 - userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Safari/536.30.1 ) to show web content. Our application loads a custom scheme URI say cec://engine/load.init.htmlOur application registered the custome scheme protocol with the webkit cec:// so that appropriate handler is triggered in our code to handle the loading of load.init.html.Within the load.init.html, code, we redirect to a dynamic page from web:<html>...<body><script type=text/javascript>location.href = https://api.cec.com;</script></body></html>Upon loading the above page it redirects to https://api.cec.com:The api.cec.com executes some javascript which sets a relative URL backlocation.href = Authenticate/opi/.....;Now it tries
Replies
0
Boosts
0
Views
591
Activity
Sep ’16
Url scheme not working on iOS 9.3.3
Hello developers.I have a huge problem that I can't understand well. Till now I have implemented url schemes to redirect from browser to my application and In that moment I download something for application. Why now in some devices this thing is already working and in some other is not working. I read that apple changed something, they put Universal linking. Does this thing is creating my problem, can I replace uri schema with universal linking. As i saw universal linking is just for opening application and not having a method for handling to do specific things ?!
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
413
Activity
Jul ’16
Build scheme for App disappears.
Hi. I am developing an App with Network Extension, and when I use git stash or checkout, the Build scheme for App disappears and only the Build scheme for Extension remains. When I restart Xcode, the Build Scheme for App appears, but it is hard to restart it every time. So, please tell me how to solve this problem. Now I'm using Xcode Version 14.0.1 (14A400) on macOS12.6.
Replies
0
Boosts
0
Views
436
Activity
Oct ’22