I want to use the Google Transliteration API to have the English to Hindi 
transliteration on a personal website.

I am serving the website over HTTPS and when I follow the transliteration 
page, I am getting the API results returned via HTTP and hence the content 
is blocked by the browser.

Any chances of this getting fixed?

I am following the instructions here-

https://developers.google.com/transliterate/v1/reference

Code looks like this-

    <script type="text/javascript" src="https://www.google.com/jsapi";>
    </script>
    <script type="text/javascript">
      // Load the Google Transliterate API
      google.load("elements", "1", {
            packages: "transliteration"
          });

      function onLoad() {
        var options = {
            sourceLanguage:
                google.elements.transliteration.LanguageCode.ENGLISH,
            destinationLanguage:
                [google.elements.transliteration.LanguageCode.HINDI],
            shortcutKey: 'ctrl+g',
            transliterationEnabled: true
        };

        // Create an instance on TransliterationControl with the required
        // options.
        var control =
            new 
google.elements.transliteration.TransliterationControl(options);

        // Enable transliteration in the editable DIV with id
        // 'transliterateDiv'.
        control.makeTransliteratable(['hindicontent']);
      }
      google.setOnLoadCallback(onLoad);
    </script>


I am getting error because of this in the browser-

http://www.google.com/inputtools/request?text=what&ime=transliteration_en_hi&num=5&cp=0&cs=0&ie=utf-8&oe=utf-8&app=jsapi&uv&cb=_callbacks_._0j3c1b3gz

Since the request is being made via http and not https, its blocked. Is 
there something I can change to get this working?

Thanks in advance.
Regards



-- 
-- 
You received this message because you are subscribed to the Google
Groups "Google AJAX APIs" group.
To post to this group, send email to
google-ajax-search-api@googlegroups.com
To unsubscribe from this group, send email to
google-ajax-search-api+unsubscr...@googlegroups.com
To view this message on the web, visit
https://groups.google.com/d/msgid/google-ajax-search-api/2717e29b-a7ce-4eff-b407-38a8e0bb5261%40googlegroups.com
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-ajax-search-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to