Create application link to Skype profile

后端 未结 1 2056
渐次进展
渐次进展 2020-12-22 16:57

I\'d like to create an application link in HTML to a Skype profile. I\'ve found that you can do the following:

Link to m         


        
相关标签:
1条回答
  • 2020-12-22 17:32

    This doesn't seem to be very well documented, but there are ways to specify an action for a Skype profile link. This is the syntax

    skype:profile_name?action
    

    Examples of such actions are

    • call to call
    • chat to chat
    • voicemail to leave a voice mail
    • sendfile to send a file
    • add to add to contacts
    • userinfo to view profile

    In this case then, the link to view the profile would look like this

    <a href="skype:profile_name?userinfo">Link to my profile</a>
    

    See also the Skype URIs page on MSDN.

    0 讨论(0)
提交回复
热议问题