Skip to content

Commit a4f7695

Browse files
author
Nicolas Garnier
committed
Updating some text and links to the Prod docs URL.
Change-Id: If132f8018ab27b5ea6d79af0437b9ca17bc307d8
1 parent dc2519e commit a4f7695

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Firebase SDK for Cloud Functions Samples Library
22

3-
This repository contains a collection of samples showcasing some typical uses of Cloud Functions using the Firebase SDK for Cloud Functions.
3+
This repository contains a collection of samples showcasing some typical uses of Cloud Functions using the [Firebase SDK for Cloud Functions](https://firebase.google.com/docs/functions).
44

5+
### What's Cloud Functions?
56

6-
## Prerequisites
7+
Cloud Functions is a hosted, private, and scalable Node.js environment where you can run JavaScript code. Firebase SDK for Cloud Functions integrates the Firebase platform by letting you write code that responds to events and invokes functionality exposed by other Firebase features.
78

8-
To learn how to get started with the Firebase SDK for Cloud Functions try the quickstart samples and have a look at [the documentation](https://firebase.google.com/preview/functions/).
9+
## Prerequisites
910

11+
To learn how to get started with the Firebase SDK for Cloud Functions have a look at our [Getting Started Guide](https://firebase.google.com/docs/functions/get-started), try the [quickstart samples](/quickstarts) and have a look at [the documentation](https://firebase.google.com/docs/functions).
1012

1113
## Use Cases and Samples
1214

instagram-auth/public/popup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
const script = document.createElement('script');
7272
script.type = 'text/javascript';
7373
// This is the URL to the HTTP triggered 'token' Firebase Function.
74-
// See https://firebase.google.com/preview/functions/gcp-events#handle_a_cloud_http_firebase_function_event.
74+
// See https://firebase.google.com/docs/functions.
7575
var tokenFunctionURL = 'https://us-central1-' + getFirebaseProjectId() + '.cloudfunctions.net/token';
7676
script.src = tokenFunctionURL +
7777
'?code=' + encodeURIComponent(code) +

linkedin-auth/public/popup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
const script = document.createElement('script');
7272
script.type = 'text/javascript';
7373
// This is the URL to the HTTP triggered 'token' Firebase Function.
74-
// See https://firebase.google.com/preview/functions/gcp-events#handle_a_cloud_http_firebase_function_event.
74+
// See https://firebase.google.com/docs/functions.
7575
var tokenFunctionURL = 'https://us-central1-' + getFirebaseProjectId() + '.cloudfunctions.net/token';
7676
script.src = tokenFunctionURL +
7777
'?code=' + encodeURIComponent(code) +

quickstarts/time-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The function `date` returns the current server date. You can pass it a `format`
99

1010
Further reading:
1111

12-
- [Read more about the Firebase SDK for Cloud Functions](https://firebase.google.com/preview/functions/)
12+
- [Read more about the Firebase SDK for Cloud Functions](https://firebase.google.com/docs/functions)
1313

1414

1515
## Initial setup, build tools and dependencies

0 commit comments

Comments
 (0)