Search results for

file uri scheme

78,483 results found

Post

Replies

Boosts

Views

Activity

DEP simulator session URI issue
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?
0
0
375
May ’16
Where scheme is saved ??
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 ~~~
0
0
124
Nov ’15
Reply to FPS - Client test SDK
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:
Aug ’15
iOS does not process Generic Access Profile 0x24 (URI) advertisement?
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
0
0
727
Mar ’21
Reply to id3 tags within 4k hevc encoded m4f?
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:
Jul ’19
Apple News INVALID_DOCUMENT - Unable to read uri
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
0
0
1.2k
Jul ’22
Reply to Missing redirection to a valid redirect URI
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:
Nov ’22
In the callbackURLScheme scheme of the ASWebAuthenticationSession If a custom scheme is not available
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?
2
0
669
Oct ’24
Reply to Database error when testing on device
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
Feb ’23