Questions tagged [server-to-server]

Communications between a server and server.

82 questions
25
votes
6 answers

CloudKit Server-to-Server authentication

Apple published a new method to authenticate against CloudKit, server-to-server.…
Philipp
  • 253
  • 3
  • 7
8
votes
0 answers

Server-side validation of iOS and Android auto-renewable subscriptions using server-to-server notifications and Firebase Cloud Functions

I have successfully implemented subscription validation for Google Play, but I am struggling to understand the validation flow for iOS auto-renewable subscriptions and would like to ask for your help. Here is how high-level logic for Google…
5
votes
4 answers

Setup Server-Server SSL communication using socket.io in node.js

I'm trying to setup a server to server link using socket.io over ssl connection. This is my example: /** * Server */ var app = require('express')(); var config = require('./config'); var https = require('https'); var http = require('http'); var…
Tomasz Rakowski
  • 942
  • 1
  • 11
  • 25
5
votes
2 answers

Google App Engine authorization for Google BigQuery

I have followed the instructions in https://developers.google.com/bigquery/authorization#service-accounts-appengine to make some queries from app engine to bigquery. In the step 2, I click on Team in Google Api Console and it redirects to App…
4
votes
1 answer

Not getting unified_receipt in Apple iOS In App Purchase Server-to-Server Notification Sandbox

I am not getting unified_receipt as said in the developer documentation in the sandbox of apple in app purchase receipts. As per their documentation : https://developer.apple.com/documentation/appstoreservernotifications/responsebody Important The…
Parth Patel
  • 5,507
  • 3
  • 12
  • 27
4
votes
1 answer

iOS subscriptions server_to_server notifications using firebase

I need to implement server-side logic, to handle changes in apple iOS subscriptions status https://developer.apple.com/documentation/storekit/in-app_purchase/enabling_status_update_notifications My questions is: Can I do that with firebase? I.e.…
Torello
  • 545
  • 6
  • 12
4
votes
1 answer

PHP script to access server to server to Google drive to display my own file

I need an help to make the right decision about how to make use of google api. I want to develop a script to connect server to server (without any Oauth2 connection) to my google drive folder in order to display google drive file and folder in a web…
Luca
  • 676
  • 1
  • 13
  • 28
3
votes
2 answers

Making a Cross Domain API

I Have a new project at work. It will require server to server and client to server messaging on a cross domain basis, just like the Facebook API. Where can I find good resources about this subject? The main questions are: Should we prefer using an…
CamelCamelCamel
  • 5,048
  • 8
  • 57
  • 91
3
votes
3 answers

Why do communications between internal services need authorization like oauth if the outside world can't access the apis directly?

This is just a general question about microservice architecture. Why do 2 or more internal services still need token auth like oauth2 to communicate with each other if the outside world doesn't have access to them? Couldn't their apis just filter…
u84six
  • 3,515
  • 3
  • 28
  • 49
3
votes
1 answer

Google function HTTP trigger - authentication problem server to server with service account

What i want to do: To call a google function from my server/machine & limit it usage with a (simple) authentication. What i use: Node.js, google-auth-library library for authentication. What have I done/tried: 1) Created a project in Google Cloud…
3
votes
1 answer

Universal user profile for subproject sites – securely trasfering user data from main server

I have a site (A) for main project with user system (which is supposed to display all student competitions and academic events in my country for registred users. The site is also enabling users to sign them to these events and some other things. The…
3
votes
3 answers

Connect to Amazon S3 from hosting

Ok I been Googling for a while now, and i can't seem to find a good tutorial on how to connect to an Amazon S3 account from my hosting server. If anyones knows of a good step by step tutorial please post url. Here's a little bit more info on what im…
dlaurent86
  • 2,025
  • 3
  • 14
  • 11
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,378
  • 8
  • 59
  • 87
2
votes
0 answers

Is there an API to get the price of Apple's subscription?

I tried the subscription-related API mentioned in the Apple documentation, but I found that there is no price of income-related fields in the response body. Is there such an API that allows me to get the price of product subscriptions from the…
2
votes
2 answers

What is retry policy for Apple Server-to-Server Notifications

I'm implementing server-side application that manages subscriptions for IOS application. To control account state(subscription is active or not) on the backend I'm using Apple Server-to-Server Notifications Documentation saying: Respond to…
Peter Gyschuk
  • 557
  • 4
  • 9
1
2 3 4 5 6