Viber如何选择要从HTML页面显示的图像 [英] How Viber select the image to display from HTML page

查看:103
本文介绍了Viber如何选择要从HTML页面显示的图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我通过Viber向某些人发送URL时,Viber会加载URL并显示代表HTML页面的图像.

when I send some URL to someone via Viber the Viber load the URL and displays image representing the HTML page.

如何告诉HTML页面应该是什么图像?

How to tell the HTML page what image it should be?

推荐答案

您应使用 Open Graph 协议.您只需将此代码段添加到页面<head>:

You should use Open Graph protocol. You can simply add this snippet to your page <head>:

<meta property="og:type" content="website">
<meta property="og:site_name" content="Название сайта">
<meta property="og:title" content="Заголовок">
<meta property="og:description" content="Описание.">
<meta property="og:url" content="http://example.com/page.html">
<meta property="og:locale" content="ru_RU">
<meta property="og:image" content="http://example.com/img.jpg">
<meta property="og:image:width" content="968">
<meta property="og:image:height" content="504">

<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Заголовок">
<meta name="twitter:description" content="Описание.">
<meta name="twitter:image:src" content="http://example.com/img.jpg">
<meta name="twitter:url" content="http://example.com/page.html">
<meta name="twitter:domain" content="example.com">
<meta name="twitter:site" content="@">
<meta name="twitter:creator" content="@...">

图片尺寸应为968x504px.在此处

Image size should be 968x504px. Read more here

干杯!

这篇关于Viber如何选择要从HTML页面显示的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆