How to send location data to waze mapping - waze

I am traying to send location info to waze and all other user can see I want to send location via http post or get request , how can I do it ?

Related

The endpoint I'm using is to create a new contact

I'm currently trying to send an email from our Squarespace newsletter signup to our Everlytic but I'm hitting 401 response headers from Cloudflare. The support agent suggested I send through the call (The Auth header is already base64 encoded):
javascript sends an email address to a contact list (id 31188). It currently works in Postman but has issues when it's sent through the browser. It's not CORS and the response header shows a 401 from cloudflare.

How to setup a Web Hook API URL with Post Method

UIB Sandbox Access request.
The webhook URL will be receiving a webhook payload as an input.
Get the web hook URL from the application you want to send data
use that URL in webhook section of the application you want to receive data from
choose type of events you want to application to notify you about

Received weird request URL in my TOMCAT access logs

I have received some weird request URL in my TOMCAT access logs. which is
as follows:-
\x16\x03\x01\x01\"\x01" 200 40788
as clearly seen from above log, the server has given 200(success) response to the client(the one who is accessing above URL from our server).
I am really concerned whether the hacker is trying to post some malicious data on the server?
above request is in which format? is it in hexadecimal?
how should I convert above request URL to text format so that I will get to know
which resource he is trying to access or on which URL he is trying to post?

Whatsapp send text message url scheme equivalent

When I need to send text message via Whatsapp in a web page, I can use the following url scheme.
send
I want to achieve the same effect using Wechat and QQ. I know the their url scheme start with weixin:// and mqq://. I successfully open the respective app but fail to find a way to send text message. How can I do that?

Implementing a sign in with google button between server and client

I am struggling to understand how to implement a Google login. This is currently where I am at:
The client loads a default static HTML page from the server with a login button. Once clicking the login button it redirects them to the /login endpoint on my server. This redirects the user to the Google login and then consent page. Once the user logs into Google it redirects them to the /oauth2callback endpoint on my server. The response from Google contains the token that I need to get all the user info that I need. After I get the info from Google's services I need a way to send this info to the client in a JSON format. This info will be used in order for the client to connect to a websocket endpoint on my server.
I don't understand how I can send this info to the client. The client has been redirected to pages with no GET requests made to my server so I cannot send a JSON response. I don't want the client to make an additional GET request to the server if at all possible. How can I send the data I need to to the client?
I'm guessing your oauth2callback redirects to, or serves a page to your user. How about setting the JSON into a cookie that your JavaScript can then parse.