Questions tagged [yandex-api]

Web APIs from Russian internet company Yandex (Яндекс), including Maps, Money, Metrica, Direct, Disk, and Webmaster

Yandex (Яндекс, Jandeks) is a Russian search engine and internet company. They provide a set of APIs, mostly s for web developers. The APIs are based on popular Yandex consumer products, including Yandex.Maps, Yandex.Money, Yandex.Metrica, Yandex.Direct, Yandex.Disk, and Yandex.Webmaster.

102 questions
0
votes
0 answers

Get Yandex domain email with api

I have try create an application for my team get email from yandex domain. I have success create email but I can't read the email from my mailbox. On the document don't mention this feature but I think this exits. The link can get number of email on…
0
votes
1 answer

YandexTranslator api for .NET?

I find YandexTranslator in here : https://github.com/prokhor-ozornin/Yandex.NET.Translator I installed YandexTranslator via Nuget This iy my code in button translate: IYandexTranslator translator = Yandex.Translator(api =>…
0
votes
1 answer

Yandex Metrika API realtime visitor data

I am using Yandex Metrika API to display analytics data in my webpage instead of Yandex Metrika page. I have created all necesary data visualizations, but I can't figure out how to display currently on page. Like, page visits or users. In Yandex…
Edgars
  • 913
  • 1
  • 19
  • 53
0
votes
2 answers

how to create json request from xpages to yandex translate api

i need to help to create json request from xpages to yandex Json interface api. How to configure json https request for this api. https://tech.yandex.com/translate/doc/dg/reference/translate-docpage/#codes or How to use this block in xpages URL…
0
votes
1 answer

^Not running function

For some reason the script does not run, or return answer. The console is nothing. Trying to get an answer to yandex.transtale site (https://tech.yandex.com/translate/doc/dg/reference/translate-docpage/) Code:…
Dmitry
  • 17
  • 1
  • 8
0
votes
3 answers

How to put in Yandex translation API in an android application?

How do I make my android application translate from English to Hindi using Yandex translator? Java API and JSON file. I have got the API key and I've no idea what codes are to be written to include the API and make it work. It will be really helpful…
Raksha S
  • 31
  • 2
  • 4
0
votes
1 answer

Disable clusters in Yandex Maps API

I have an Yandex Maps installed on my project Code below display an cluster view of all objects. What I would like to do is disable clusters $.getJSON( ymFormAction , "ymJSON=1" ).done( function (json) { window.geoObjects =…
Sergey Khmelevskoy
  • 2,429
  • 3
  • 19
  • 43
0
votes
0 answers

when call yandex api It gives me 403 Forbidden by retrofit

When I call this link https://translate.yandex.net/api/v1.5/tr.json/translate?key=trnsl.1.1.20151201T195234Z.a35326958c23a7a8.51da9f9c1ffe2d901f1ee0e4bf3cfdadfe19b3f8&ui=ru&text=apple&lang=en-ru on my browser it works, but when I call it using…
0
votes
1 answer

Yandex Maps Api Json Response Giving 403 Unauthorized Error

I am working on selecting json data from yandex maps api. When I call a URL from browser, it's giving me true response. But it's not giving me same response when I called this request in php. Giving 403 unauthorized error. Here is the URL and you…
tucecang
  • 1
  • 1
  • 5
0
votes
1 answer

How to get id of clicked placemark on yandex maps?

I've trying to get id of clicked placemark, but I can't find the way to do that. I have the following code on TypeScript: var map = new ymaps.Map( 'map', { center : [55.76, 37.64], zoom : 7 } ); var objectManager = new…
RomkaChev
  • 31
  • 1
  • 5
0
votes
0 answers

jQuery UI datepicker doesn't open after click on the map

I use jQuery UI datepicker and yandex map. The ordinary work of datepicker is: click on datepicker - open calendar popup click around datepicker - hide calendar popup But yet I use yandex map and when you click on the map and then click on…
AlexAstanin
  • 343
  • 1
  • 4
  • 14
0
votes
1 answer

How get coords from click event in X°Y′Z" format (not in X.Y == decimal)

e.get('coords') from code below, returns coords in decimal format, but I need them in X°Y′Z" format. Is there any way to get this without manual converting? myMap.events.add('click', setCoords); function setCoords(e) { var coords =…
madzohan
  • 11,488
  • 9
  • 40
  • 67
0
votes
2 answers

Passing value in input

I use the Yandex API to count the distance and price of a trip from point A to B. You can try yourself by clicking 2 times in different parts of a map in my example: http://jsfiddle.net/EveGeen/wor9afo0/ ymaps.route([start, finish]).then(function…
EveGeen
  • 3
  • 2
0
votes
0 answers

How to solve "Unterminated string literal" error while using JSON.parse method?

I get JSON data from the Yandex.Direct API, but when I try to parse it there is an error: SyntaxError: Unterminated string literal (line 231, file "importJSON") My code: var jsondata = UrlFetchApp.fetch('https://api.direct.yandex.ru/v4/json/',…
Anton Barycheuski
  • 712
  • 2
  • 9
  • 21
0
votes
1 answer

Yandex Maps: how change styles placemark from api 1.0 to 2.0

I have this styles in api 1.0 var s = new YMaps.Style(); s.iconStyle = new YMaps.IconStyle(); s.iconStyle.offset = new YMaps.Point(-1, -30); s.iconStyle.href = "http:www.example.com/images/1.png"; s.iconStyle.size = new YMaps.Point(29,…
Alex
  • 8,908
  • 28
  • 103
  • 157