Facebook Sharer issue (always shows (+) and (%) behind every word)

余生长醉 提交于 2020-01-11 13:05:13

问题


I would like to ask how I can fix my Facebook sharer issue. Whenever I want to share my article via Facebook sharer, it pops up the facebook window, which is totaLly ok. But in the window it shows pluses (+) and (%) behind every single word. Can You guys help me with it? You can take a look here at my website: http://www.asiancrib.com/post/test-2/ Try to share the article, you will see the issue.


回答1:


Kindly go to https://developers.facebook.com/tools/debug/og/object/ and type your URL . you will notice a couple of things:

  1. Your content already has + % in the description. <meta property="og:description" content="Here%E2%80%99s+a+list+of+the+top+10+most+beautiful+Asian+actress.+%E2%80%8B1.+Aishwarya+Rai+Bachchan+Aishwarya+was+crowned+Miss+World+in+1994.+With+her+blue-green+..>

You need to clean this up : <meta property="og:description" content="Here is a list of ......>

  1. Why do you have certain tags multiple times? while it won't break anything, it is not good practice.

  2. The debugger will show this message :

    Extraneous Property Objects of this type do not allow properties named 'og:http://www.asiancrib.com'. Extraneous Property Objects of this type do not allow properties named 'fb:930663840297658'.

As it suggests, these do not exist. Kindly delete the first one. Change the second one to <meta property="fb:app_id" content ="930663840297658">



来源:https://stackoverflow.com/questions/30033777/facebook-sharer-issue-always-shows-and-behind-every-word

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!