How to create a google ads in static HTML website?
I have a standard htm file how can I add the google adds and how to create add in google?
The same way as you'd add AdSense units to any other page. See Google's AdSense documentation at:
http://support.google.com/adsense/bin/answer.py?hl=en&answer=179887
Related
Is it possible in Facebook Messenger, or Telegram, or KiK, to load a MediaWiki page into a Chatbot?
I have a MediaWiki page with a lot of business coaching content.
I would like to create a Chatbot that accesses and displays this content.
Are there any tools for loading a Wiki into a Chatbot? I believe this has been done in WhatsApp: https://www.quora.com/Whatsapp-wiki-service-how-does-this-service-work
Thanks for the help
When you receive a url in telegram, a preview for the webpage is loaded automatically.
For your bot content, you could the callsendMessage function and use the disable_web_page_preview property to control the web preview of urls embeded in your messages.
However, I would suggest that send pre-formatted or pre-cached Wikipedia HTML content as responses to specific user commands/requests to your bot.
I'm trying any forms, but no succes. Anyone do that in your google site?
In this tutorial i can put the comments box on site but don't works.
Thanks for help!
You can use facebook plugings on Google sites ,
you must go here : https://developers.facebook.com/docs/plugins/
You have many plugins.
if you want to put a commentBox,
go here : https://developers.facebook.com/docs/plugins/comments
In the Url : take your url of your Google Sites, take the iframe Code, And copy this Code on your Google sites ( in your page html ).
I'm curious if anyone has had success controlling content shared by Google+'s +1 and Share buttons on Facebook tabs. I'm seeing Google scrape content from the brand's main page (http://www.facebook.com/brand) instead of the tab itself (http://www.facebook.com/brand/app_123456789).
I've tried the microdata and Open Graph tag methods documented for the G+ Snippet but I see no difference. https://developers.google.com/+/plugins/snippet/ And I don't see a way to build my own share URL like you can with Facebook's dialogs.
You can build your own share URL using the Share Endpoint: https://developers.google.com/+/web/share/#sharelink-endpoint
I have been using Tumblr for quite a while but I couldn't figure out how to display the Tumblr tag cloud on the blog.
I would like to ask how to display a tag cloud on my Tumblr blog?
A third-party JavaScript solution: http://rive.rs/projects/tumblr-tag-clouds
This is a tag cloud generator for Tumblr. It uses the Tumblr API to generate a tag cloud each time your site is accessed.
Another variant (claiming to be faster): http://post-theory.com/tumblr-tag-cloud-javascript
What I'm trying to do is to share (video) link, description and thumbnail of the link from/of my flash website in google plus. Since main .swf file of the flash site is embedded in the single html file, it is not possible to use different meta data for different posts. So is there any way that I can share the links with related description and thumbnail image in google plus just like in facebook.
(http://www.facebook.com/sharer/sharer.php?s=100&p[title]=test&p[summary]=test&p[url]=http://www.testurl.com&p[images][0]=http://www.testurl.com/images/thumb1.jpg)
Thanks in advance!
Looks like Google+ relies on metadata in the physical page to pick up the title, description, and thumbnail image.
What I would do is to add a query string parameter to the url sent to Google+, like so:
http://www.example.com/?video=videoID
When Google then fetches the page to retrieve the metadata, you dynamically provide the correct information using the specified micro-formats or meta tags as detailed here: https://stackoverflow.com/a/8295748/354167
Additionally, you could (should?) use the query string to actually load up the relevant video in your swf, providing a better user experience.
// GOOGLE +
private function shareGoogle(e:Event):void
{
openPage("https://m.google.com/app/plus/x/?v=compose&content="+escape(videoInfo.videoLink),"_popup");
}
Here are the more description.