Sygic Custom URL IOS - custom-url

i have been using an url launch that open sygic and drives to coordinates n my website.
It looks like this: com.sygic.aura://coordinate|15.06591|47.73341|drive
After the last Sygic update this url launch does not work anymore, it fires up Sygic but no route is calculated any longer.
Does anybody have som ideas to overcome this?
Is there anyone else that hava this problem and found a solution for it?
This is what i tested with iPad Air 12.5.3, Sygic Version 20.4.5
All of Sygics custom url: https://www.sygic.com/developers/professional-navigation-sdk/ios/custom-url

I contacted the Sygic Support. Here is their answer:
Thank you for contacting Sygic.
We apologize for the inconvenience. You're using the legacy format which is no longer supported in the latest release. Instead of this format, universal links can be used.
For your use case, you can use:
https://go.sygic.com/directions?to=latitude,longitude

Related

Facebook SDK for .NET - Security Warning Issue

everyone. Today I encounter the following message in my Windows Phone App:
Success
SECURITY WARNING: Please treat the URL above as you would your password and do not share it with anyone.
This happens when my users Login through the Web Browser Control, which get the Login URL from the GetLoginUrl method from the Facebook SDK for .net. This problem is not only happening in my Apps, I've seen users from other Apps having the same problem.
Anyone found a solution to this?
I'm running this SDK in my PictureWeather (Windows Phone 7 & Windows Phone 8) and Picture2Cams (Windows Phone 8) Apps.
Had the same problem. In my app I changed this line:
parameters["redirect_uri"] = "https://www.facebook.com/connect/login_success.html";
To this line:
parameters["redirect_uri"] = "https://m.facebook.com/connect/login_success.html";
And it works now.
Had the same problem on our WP8 app using the Facebook SDK for Windows Phone (http://facebooksdk.net/docs/phone/) and the indicated solution with changing the redirect URL also worked for us.
Thanks for submitting this solution.
I ran into this problem, myself, and did a bit of digging to get to the root of the issue. The problem seems to spring from some unknown (to me, anyway) change on Facebook's side, where previously the authentication response URL was in the form
https://www.facebook.com/connect/login_success.html#access_token= ...
for some reason it now comes back from the login flow as
https://www.facebook.com/connect/login_success.html#?access_token= ...
The code in FacebookSDK.NET does a comparison in line 104 of LoginPage.xaml.cs with a simple Uri equality test
if (e.Uri == WebAuthenticationBroker.EndUri)
which fails to return true when the question mark appears in the middle. I expect Facebook will correct this on their end just because too much stuff breaks, but in the meantime a pretty clean fix is to get the FacebookClient sources from GIT instead of NuGet and change the comparison to this
UriBuilder clean = new UriBuilder(e.Uri);
clean.Query = "";
if (clean.Uri == WebAuthenticationBroker.EndUri)
The code will then run just fine, but this is seems ultimately to be Facebook's bug when checking the documentation on their developer site.
I hope this helps some others, I signed up for Stackoverflow just to make this post. :)
Use latest facebook sdk for windows phone. This issue got resolved in latest sdk. I am using Facebook.Client 0.8.2-alpha and its working great. I followed http://nuget.org/packages/Facebook.Client and http://facebooksdk.net/docs/phone/controls/login-ui-control
I guess the only way he did this was by downloading both projects from their official Github (Facebook and Facebook.Client) and reference them in your app instead of using the DLL that you can get from Nuget.
With both projects in hand, you can change this parameters on the Facebook.Client Project in the file FacebookSessionClient. Then build all the project and run.
However this solution didnt work for me too.

Where can I find a feed of App Store new releases?

Not sure this is the correct forum for this, and if it isn't, my apologies in advance.
Is there a feed of App Store new releases somewhere? Or a feed/list of apps with their category and release date?
This listing is gone from the App Store proper and I'd like to see if it would be possible to make an app to replace it's functionality.
https://itunes.apple.com/us/rss/newapplications/limit=100/xml
You can build your own category-specific feed here: https://rss.itunes.apple.com/us/
PS: Only added this answer because Linuxios' answer leads to a page with an XML error because 300 results doesn't seem allowed. I tried with 200 and it worked so it seems a bit odd.

Issues in using facebook api for ios sdk

I have downloaded the source project from
sourcecode.
I came across many issues over there, then I changed the source header path then changed the compiler version in the project settings, then all those were solved, now there is no errors, it runs, when I click FBLoginButton ,Facebook Login Dialog appeared but it looks empty,
I dont know why, The app key and app secret key were placed correctly.
I tried with device,if there would probm with simulator, still looks same.
what Im doing wrong, I had searched a lot, not found any solution, any ideas pls tell me
I have the same problem.
I have opened a bug here : https://developers.facebook.com/bugs/279606225487338
You can also vote for it, so that FB may take a look at it. Let's hope they solve it.
We had two apps in the app store which used this old api of facebook for login and they also g=have stopped working... So most probably Facebook has stopped support for this but I couldn't fond anything official. I guess we will have to incorporate the new Api.. :/ If I find something I will post here...

cordova (ex phonegap) tel: links in <a href> not working in ios5

I've checked everywhere here in stackoverflow, google, phonegap and other websites but I cannot find a solution, but if I did miss the right link, please post me to it, because I'm lost.
1: I'm using Cordova + JQmobi to write my apps.
2: the only link that doesn't work is the TEL: in a tag links.
3: they work in Safari for ios (any version I've found from ios4 to ios5.1)
4: ONLY in ios5 the link to TEL: won't work in native apps
Here the codes I've tried:
Link to the tel
Link to the tel
Link to the tel
Link to the tel
For the format of the telephone number I've used:
tel:+39000000 (+39 is for italy)
tel:123456 (I've tried any kind of real telephone numbers but I have no #, * or spaces)
tel://+39123456
When I check on the xCode simulator for a SMS: link i get this error:
AppDelegate::shouldStartLoadWithRequest: Received Unhandled URL sms:+39123456
And that's correct because the simulator doesn't have the SMS app, but then when I try the TEL: link:
Failed to load webpage with error: The URL can’t be shown
That for what I know is something that happens if you write a non legal url that you want to open with a browser.
I've read that jqmobi (as much as other framework such as jqtouch) could prevent the default behavior of a link but that if you explicitly invoke it.
What is really changed in the ios5? Because all my links work on the ios4.3
Anyone out there please help me and many other I saw couldn't find a real solution for this new update of Apple.
Thanks for all
My solution is: there is no solution. But a plugin:
https://github.com/mchristie/PhoneGap-ios-PhoneDialer/
If you use cordova be sure to check the 4 lines you have to change (cordova instead of phonegap)
Actually there is a solution to this, or at least there was for me, here it is:
In the HTML:
<input type="button" href="tel:+1-800-555-1234“ class="phone-number" value="1-800-555-1234"/>
In the Javascript:
$(‘.phone-number’).bind(click, function(e) {
e.preventDefault()
var phoneLink = $(e.currentTarget).attr('href');
window.open(phoneLink, '_system', 'location=yes’);
}
Addendum... Someone suggested an edit where i change ‘.phone-number’ to '.phone' and remove the 'location=yes’. I don't know what affect that would have on this code because I am no longer working on this project and the code is in a repo that I own, but I can tell you for certain changing .phone-number to just .phone would definitely not work because that is not what i called the class in the input field. As for the location=yes being removed, again I have no idea what affect that would have since I don't have the code anymore. They did however point out that I used the incorrect left and right quotes. That was probably just a cut-paste mistake on my part but who knows.
Have you tried removing the '+'?
Link to the tel
Link to the tel
Link to the tel
Link to the tel
as from their spec it sounds like they don't fully support all special characters:
http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html

Invalid or missing URL scheme hackbook

I am trying to use facebook ios sdk but when I run the Hackbook example it gives me the error message "Invalid or missing URL scheme. You cannot run the app unti you set up a valid URL scheme in your .plist" Where do I make the changes for this?
Since one of the answers mentioned it, I will say that I have already modified the plist to have fb[my_app_id] in the URLSchemes.
This tutorial walks you through the process step by step, search for "Modify the app property list file".
I figured it out. There was another instance in the code where the ID needed to be replaced. What's odd is that it's not specifically called out as far as I can tell. I did a search for it.
you have to add like this
100% works and solved crash