Customizing Linkedin Login Button

后端 未结 6 1566
渐次进展
渐次进展 2020-12-15 23:21

I\'m implementing LinkedIn Login into my web app.. I\'m using following script as :

 

to l

6条回答
  •  悲哀的现实
    2020-12-15 23:41

    Other way to do this:

    1. Place an image that you like:

      
      
    2. Create JS function like this:

      function liAuth(){
         IN.User.authorize(function(){
             callback();
         });
      }
      
    3. Use LinkedIn user data:

      IN.API.Profile("me")
         .fields("firstName", "lastName", "headline")
         .result(resultFunction);
      

提交回复
热议问题