Early Access
twitter:image:type
Specifies the MIME type of the image linked with the twitter:image tag, aiding the Twitter platform in understanding the nature of the image content.
Code Examples
<meta property="twitter:image:type" content="image/jpeg" />
<meta property="twitter:image:type" content="image/png" />
<meta property="twitter:image:type" content="image/svg+xml" />
<meta property="twitter:image:type" content="" />
Recommendations
- Match the MIME TypeEnsure the MIME type matches the file format of your image exactly. This helps Twitter to correctly process and display the image.
- Use Common FormatsPrefer widely supported image formats such as JPEG or PNG for broader compatibility and better performance across devices.
Related Documentation
Related Meta Tags
Specifies the name of your Android app on the Google Play Store. This is utilized in Twitter Cards when you want to promote a mobile application directly from a tweet.
<meta name="twitter:app:name:googleplay" content="MyApp">
Specifies the name of your application tailored for iPad users when sharing content on Twitter.
<meta name="twitter:app:name:ipad" content="My Amazing App">
Specifies the unique application ID for a Google Play app, used within Twitter Cards to direct users to a specific Android app.
<meta name="twitter:app:id:googleplay" content="com.example.app">
Defines the iPhone app ID in the Apple App Store for deep linking from tweets. This is part of Twitter Cards used to enhance tweets with rich media to direct users to web content directly or through an app.
<meta name="twitter:app:id:iphone" content="307234931">
Defines the numeric ID of your iPad application in the Apple App Store, enabling Twitter to link to it when your content is shared.
<meta name="twitter:app:id:ipad" content="307234931">
Community