Mapmytracks integration doesn't work in the latest beta.
Reason: Authentication http header is not set. I.e. login/pass is not used at all.
I've fixed it for myself only by changing mapmytracks url to my server and putting the following code in nginx config:
Code Select
location = /mmtapi/a29er/ {¬
client_max_body_size 10m;¬
proxy_set_header Authorization "Basic [base64 encoded login/pass here]";¬
proxy_pass https://www.mapmytracks.com/api/;¬
}