I am trying to deep link from my app to a user's twitter profile on the native twitter app. I have added schema rules for twitter and the following code:
application.open( URL(string:"twitter://user?screen_name=BarackObama", options[:], completionHandler:{(success) in
print("Success")
})
I can successfully open the twitter app and see the console print "Success" but my own twitter feed is what I see, not the user's twitter page. Is this url schema still valid?
Thanks