I'm having an issue with the DEP simulator that is provided with the MDM protocol reference. When I try to GET the /session URI (to obtain a session token), the simulator returns an HTTP 400 Bad Request error. The logs on the simulator say that the HTTP request header is missing the 'Content-Type' header. However, the 'Content-Type' header isn't a valid request header for GET operations (and therefore it cannot be sent); it is only valid for POST/PUT operations. How do I get around this?
Search results for
file uri scheme
78,483 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi ! ^^I heard Scheme is not included in project file...so i heard we need to save out to other folder to share scheme with other developers in a same project...my queustions are1. Where scheme is saved ?? (Especially, I want to share pre-action script.. When I zipped project and give other person, script is gone.. no script remand in a project)2. How to save out scheme so that we can share a scheme file ?thanks ~~~
It is a little surprising that no error is returned in this case. For example, as demonstrated by the iOS FPS Client example in the SDK if you create an AVURLAsset for your playlist URL and attempt to load the playable key asynchronously for the asset are you not getting an error?If your resourceLoader:shouldWaitForLoadingOfRequestedResource: method is never called then there is some kind of issue with the HLS .m3u8 playlist file loading. If you are using the sample code then perhaps you didn’t change PLAYLIST_URL variable (see file ViewController.m) to point to your server/.m3u8 file? Another possibility is that you modified the .m3u8 file in such a way that it is not compatible with FPS. Again, refer to the FPS programming guide to learn how to add FPS to an HLS Playlist.You should also verify your custom URI scheme (e.g. skd) in the app resourceLoader:shouldWaitForLoadingOfRequestedResource: method as shown by the SDK client sample code.
Topic:
Media Technologies
SubTopic:
Streaming
Tags:
Hello, We have a question regarding reading Bluetooth advertising data with iOS. In our application, we use the Bluetooth SIG group URI with data field as described in bluetooth.com/specifications/assigned-numbers/uri-scheme-name-string-mapping/ for our custom data. With Android phones and Windows, we can decode the data according to specification just fine. However, for our application in iOS, we cannot see such data. Using an Android phone and app I captured the raw advertisement data. It contains types 0x01, 0x02, 0x08 and 0x24. In iOS the following types are decoded in advertisement keys, when the central manager discovers my peripheral: Type 0x02 (Service Class UUIDs) is decoded in advertisement key CBAdvertisementDataServiceUUIDsKey Type 0x08 (short local name) is decoded in advertisement key CBAdvertisementDataLocalNameKey In iOS the following types are NOT decoded in advertisement keys: Type 0x01 (flags), this is no problem. Type 0x24 (URI), this is the problem I ha
Could you please elaborate more on Apple clients requiring the scheme URI to be https://developer.apple.com/streaming/emsg-id3?We have a tvOS app using AVKit for handling live stream playback. We currently observe timedMetadata via KVO on AVPlayerItem. The issue we have is the KVO callback for timedMetadata is never triggered for 4K stream. We don't have this issue when playing non-4K stream though.Thanks!
Topic:
Media Technologies
SubTopic:
Streaming
Tags:
Hi tam, We are using publish to apple news plugin in Wordpress to publish articles to Apple news, and met errors like this: There has been an error with the Apple News API: INVALID_DOCUMENT - Unable to read uri [https://dam-assets.au.reastatic.net/images/f_auto,q_auto/v1657171701/news-lifestyle-content-assets/wp-content/production/capi_eed5171ac633beb37d40327f252a742e_7ff5d8b54bc98d2ba69fbc3039024eab/capi_eed5171ac633beb37d40327f252a742e_7ff5d8b54bc98d2ba69fbc3039024eab.jpeg?_i=AA] We were thinking about might there has some network limitations for Apple API to access dam-assets.au.reastatic.net, but when we upload the image again, then we can publish to Apple news successfully, and I also checked the JSON file for the published news, the image url also from dam-assets.au.reastatic.net. Another scenario is when I want to update the article, and publish to Apple News again, then there are issues like INVALID_DOCUMENT - Unable to read uri with the exactly same image url that was previ
Tel uris containing * and # are not working on iOS 15 and onwards. When I try to execute the following statement [[UIApplication sharedApplication] openURL: @tel://*21*12345# options:@{} completionHandler:nil]; It didn't show anything on the device. I also try to encode it but it didn't work.
Hi Team, I have created single app project with Family controls capabilities and added respected framework. Once it's done I am not able to see App scheme in Active scheme area. When I try to run the project, Choose app to run pop-up getting shown. Any help on this please?
This problem is still occurring for me: NoBuildableEntriesError: active scheme does not build this file Select a scheme that builds a target which contains the current file, or add this file to a target that is built by the current scheme.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Select a scheme that builds a target which contains the current file, or add this file to a target that is built by the current scheme.
While working on a web based client, you have to ensure that the redirect URI passed while authentication, is the same as the one given during registration. If the redirect uri is not the one given during registration, an invalid redirect uri error will be thrown. A redirect URI, or reply URL, is the location where the authorization server sends the user once the app has been successfully authorized and granted an authorization code or access token.
Topic:
App & System Services
SubTopic:
General
Tags:
I am currently implementing an authentication function using ASWebAuthenticationSession to log in with my Instagram account. I set a custom scheme for the callbackURLScheme, but In the Instagram redirect URL I was told I can't use a custom scheme. What should I do with the callbackURLScheme of the ASWebAuthenticationSession in this case?
And remember that your bundle is read-only so, as Scott suggested, you want to open it with SQLITE_OPEN_READONLY. One more thing I just remembered (from doing this years ago)... you may also need to do this when you call sqlite3_open_v2: add the SQLITE_OPEN_URI flag pass the path as a file: URI rather than a raw path append query parameter ?immutable=1 to that URI This makes SQLite work correctly when the file is on a read-only disk, which is basically what your app bundle is. See these pages for more detail: https://www.sqlite.org/c3ref/open.html https://www.sqlite.org/uri.html#coreqp
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
According to this article https://blog.branch.io/ios-9.2-redirection-update-uri-scheme-and-universal-links Custom URL Scheme stopped working in iOS 9.2 when triggered from Safari.Will this behavior be extended to deep links accross apps ? If yes, is it supposed to happen in iOS 9.3 or in a near future ?
How can I handle multiple schemes of the same app on Testflight? Do I have to create separate apps on App Store to handle different schemes? Currently, I am using different bundle ids for various schemes.