Communications between a server and server.
Questions tagged [server-to-server]
85 questions
3
votes
2 answers
C# How to communicate between 2 servers
I have a website running ASP.NET (C#) on server A. I need my website to access a webservice on server B. server B will only accept incoming requests if the requestee is located within a certain IP range and server A is not within this range.
I have…

Chau
- 5,540
- 9
- 65
- 95
2
votes
2 answers
How do I decode/decrypt Apple Server-to-Server Notifications?
My website supports Sign In with Apple.
In the configurations of this service, I have an endpoint here:
What I receive in this endpoint is a JSON like this:
"{"payload":"eyJraW...................NLnyA"}
However, I don't find absolutely anywhere…

Nuno
- 3,082
- 5
- 38
- 58
2
votes
0 answers
GraphQL for Reads and Rest for Writes
In the context of server to server communication and more precisely within different microservices, is it a good idea to use GraphQL?
The idea is to allow the consumers to only fetch relevant fields for them. One can build the field projections for…

GSSwain
- 5,787
- 2
- 19
- 24
2
votes
1 answer
Android publisher permission Denied only check payment(other api successfully)
I'm trying to call api Purchases.products: get to verify your purchase
it yields such a result
{
"error": {
"errors": [
{
"domain": "androidpublisher",
"reason": "permissionDenied",
"message": "The current user has insufficient…

Yaroslav Malyk
- 409
- 5
- 15
2
votes
0 answers
CloudKit Server-To-Server and PHP
The following PHP code working perfect in development environment but on production environment returns error :
{"uuid":"xxxxx", "serverErrorCode":"AUTHENTICATION_FAILED", "reason":"Authentication failed"}
any idea ?
function…

Giannis
- 133
- 2
- 10
2
votes
1 answer
Can't connect to a port but 80 in php
I have a webspace on a free hosting platform. The latter doesn't allow server-to-server connections to a port different from 80 in php scripts. I need to connect to another website on a port different from 80 using php Curl libraries, but obviusly…

Luca Maltagliati
- 102
- 1
- 12
2
votes
1 answer
CloudKit server-to-server auth + security roles
Is it possible to use security roles with server-to-server authentication in CloudKit? I would like only my server code to be able to create records in the public database.

phu
- 1,199
- 2
- 10
- 20
2
votes
1 answer
Failing to authorize connection to own GAE endpoints API with service account
I've been beating my head against the wall trying to successfully authorize an API hit on the Google App Engine (GAE) project I'm running from a python script using OAuth2 and a service account.
I've created the service account, added the service…

TedCap
- 185
- 1
- 1
- 9
2
votes
2 answers
Get an asyncio server to call another server
So I have modified the example of asyncio client and server (found here: https://docs.python.org/3/library/asyncio-protocol.html#protocol-example-tcp-echo-server-and-client) and all I want is for client.py to call serverone.py, and in turn for it to…

NuclearPeon
- 5,743
- 4
- 44
- 52
2
votes
3 answers
Node.js server-to-server encryption
I want to make a Node.js daemon that runs on multiple computers and is able to exchange messages between the different daemons. Of course the communication should be encrypted, but I really don't know what kind of encryption I should use for…

Florian Wendelborn
- 1,667
- 1
- 19
- 29
1
vote
1 answer
Unable to find the pricing and limit for the server to server notification
While using the server to server notification for checking the subscriber's subscription status I am unable to find the pricing and limit of the server to server notification
I have gone through the documentation regarding the server to server…

Sheldon
- 11
- 1
1
vote
2 answers
How to copy elasticsearch indices or logs from one elasticsearch server to another?
For example:
from https://localhost:9200 for index 'index_name'
to https://localhost:9300 for index 'index2_name'
Advice to please use mappings before copying the data over, mapping article:…

P. Sithole
- 151
- 1
- 13
1
vote
1 answer
Is there a way to identify express server-to-server request origin
Is there a way to obtain the origin information of a remote server making requests to my api server? The objective is to prevent possible server-to-server authentication token spoofing.
To test, I basically sent remote requests to the server from a…

Stephen Isienyi
- 1,292
- 3
- 17
- 29
1
vote
0 answers
Sending server-to-server events to AppsFlyer
I'm trying to sending server-to-server events to AppsFlyer for subscription notifications. For now I caught user subscription data from my API end point. According to below article I have to append 'appsflyer_id' and 'customer_user_id' with…

Randima Lahiru
- 355
- 1
- 10
1
vote
1 answer
Apple server to server notifications with multiple triggers
Apple states that for some subscription events they trigger multiple notifications. Suppose I wish to find out whether the user has cancelled their subscription so that I can offer them another cheaper option.
I could listen to…

Andriy Gordiychuk
- 6,163
- 1
- 24
- 59