Skip to content

Commit 1265cb6

Browse files
authored
main replacements (#991)
* main replacements * roku small fix
1 parent 142c421 commit 1265cb6

File tree

12 files changed

+27
-27
lines changed

12 files changed

+27
-27
lines changed

docs/getting-started/installation/roku.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Once you have your developer account created, head to the [dashboard](https://de
2929
### App configuration
3030

3131
1. Make sure your project has been enabled to create Roku apps. If you're not sure, talk to your RevenueCat contact.
32-
2. Open the RevenueCat dashboard, select your project, and click on "Add app" > "Roku Channel Store".
32+
2. Open the RevenueCat dashboard, select your project, and go to "Apps & providers" to click "Add app config" > "Roku Channel Store".
3333

3434
![](/docs_images/projects/add-app-platform.png)
3535

docs/getting-started/quickstart.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@ If you run into issues with the SDK, see [Troubleshooting the SDKs](/test-and-la
7676
### Initialize and Configure the SDK
7777

7878
:::info Only use your public API key to configure Purchases
79-
You can get your public API key from the **Platforms** section of your Project Settings in the dashboard.
79+
You can get your public API key from the **API keys** section in the dashboard.
8080
:::
8181

8282
You should only configure the shared instance of _Purchases_ once, usually on app launch. After that, the same instance is shared throughout your app by accessing the `.shared` instance in the SDK.
8383

8484
See our guide on [Configuring SDK](/getting-started/configuring-sdk) for more information and best practices.
8585

86-
Make sure you configure _Purchases_ with your public API key only. You can find this API key in your app settings by selecting your app from Project Settings > Platforms. You can read more about the different API keys available in our [Authentication guide](/projects/authentication).
86+
Make sure you configure _Purchases_ with your public API key only. You can find this API key in your app settings by selecting your app in the API keys page. You can read more about the different API keys available in our [Authentication guide](/projects/authentication).
8787

8888
import swiftContent from "@site/code_blocks/getting-started/getting-started_1.swift?raw";
8989
import objectiveCContent from "@site/code_blocks/getting-started/getting-started_2.m?raw";

docs/platform-resources/apple-platform-resources/handling-refund-requests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Regardless of if you're on V1 or V2 of Apple App Store Server Notifications, Rev
1616

1717
## Handling of Refund Requests
1818

19-
To allow RevenueCat to send additional data of your customer's purchases to Apple, navigate to your RevenueCat project, choose your iOS platform under **Platforms** in the project sidebar, and expand the **"Handling of refund requests"** section:
19+
To allow RevenueCat to send additional data of your customer's purchases to Apple, navigate to your RevenueCat project, choose your iOS platform under **Apps & providers** in the project sidebar, and expand the **"Handling of refund requests"** section:
2020

2121
![](/docs_images/platform-resources/apple/apple-handling-refunds.png)
2222

docs/platform-resources/server-notifications/apple-server-notifications.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RevenueCat does not require server notifications from the App Store, however doi
1212

1313
[Apple server-to-server notifications](https://developer.apple.com/documentation/appstoreservernotifications/enabling-app-store-server-notifications) should be set up in App Store Connect with the URL provided in the RevenueCat dashboard.
1414

15-
1. Navigate to your iOS app under **Project settings > Platforms** in the RevenueCat dashboard.
15+
1. Navigate to your iOS app under **Apps & providers** in the RevenueCat dashboard.
1616
2. Scroll to the **Apple Server to Server notification settings** section, and copy the entire URL provided under **Apple Server Notification URL**.
1717
![Server to Server Notification URL](/docs_images/platform-resources/apple/apple-server-to-server-url.png)
1818
3. Log in to **[App Store Connect](https://appstoreconnect.apple.com/)** and select your app.
@@ -54,7 +54,7 @@ Most customers won't need to receive Apple's notifications to their server direc
5454

5555
If you still want to receive Apple's notifications to your server, you can configure RevenueCat to forward them to a URL that you specify.
5656

57-
1. Navigate to your iOS app under **Project settings > Platforms** in the RevenueCat dashboard.
57+
1. Navigate to your iOS app under **Apps & providers** in the RevenueCat dashboard.
5858
2. Scroll to the **Apple Server to Server notification settings** section, and enter your server's URL in **Apple Server Notification Forwarding URL**.
5959
3. Click **Save Changes** in the top right corner.
6060

docs/platform-resources/server-notifications/paddle-server-notifications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RevenueCat does not require server notifications from Paddle, however doing so c
1010

1111
## Setup Instructions
1212

13-
1. Navigate to your Paddle configuration in the RevenueCat dashboard by selecting your app from **Project Settings > Platforms**.
13+
1. Navigate to your Paddle configuration in the RevenueCat dashboard by selecting your app from **Apps & providers**.
1414
2. Expand the **Webhook Configuration** section and click on **Apply in Paddle**.
1515

1616
![](/docs_images/web/paddle/apply-in-paddle.png)

docs/projects/authentication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ RevenueCat authenticates requests from the RevenueCat SDK and the [REST API](/ap
99

1010
There are two types of API keys:
1111

12-
- **Public** API keys (also known as **App specific keys** in the dashboard) are meant to make non-potent changes to subscribers, and must be used to [configure the SDK](/getting-started/configuring-sdk). Each app under a project is automatically provided with a public API key.
12+
- **Public** API keys (also known as **SDK API keys** in the dashboard) are meant to make non-potent changes to subscribers, and must be used to [configure the SDK](/getting-started/configuring-sdk). Each app under a project is automatically provided with a public API key.
1313
- **Secret** API keys, prefixed `sk_`, should be kept confidential and only stored on your own servers. Your secret API keys can perform restricted API requests such as deleting subscribers and granting entitlements. Secret API keys are project-wide and can be created and revoked by project [Admins](/projects/collaborators).
1414

1515
## Finding API Keys
1616

17-
You can find the API keys for your project under the **Platforms** section of your Project Settings in the dashboard.
17+
You can find the API keys for your project under **API keys** in the dashboard.
1818

1919
![API Keys](/docs_images/projects/finding-api-keys.png)
2020

21-
Public platform-specific API keys are automatically created when adding an App to your Project and cannot be changed. Secret API keys can be created by selecting the **+ New API key** button and will be listed under the section **Secret API keys**.
21+
Public platform-specific API keys are automatically created when adding an App to your Project and cannot be changed. Secret API keys can be created by selecting the **+ New secret API key** button and will be listed under the section **Secret API keys**.
2222

23-
You can also find the public API key in your app settings by selecting your app from **Project Settings > Platforms**.
23+
You can also find the public API key in your app settings by selecting your app from **Apps & providers**.
2424

2525
If you cannot see your API keys anywhere in the dashboard, it may mean you do not have access to them. Contact the project's owner and make sure you are added as an **Admin**.
2626

docs/projects/connect-a-store.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
2-
title: Connect Platforms
3-
sidebar_label: Connect Platforms
2+
title: Connect Apps & Web Providers
3+
sidebar_label: Connect Apps & Web Providers
44
slug: connect-a-store
55
excerpt: Connect your project to App Store Connect, Google Play Console, and more
66
---
77

8-
Once you've created a [project](/projects/overview), you'll need to connect it to the stores and platforms you want to support and set up [Server Notifications](/platform-resources/server-notifications). After you've connected your app, you can import your products from the stores to start configuring your offerings.
8+
Once you've created a [project](/projects/overview), you'll need to connect it to the stores and payment providers you want to support and set up [Server Notifications](/platform-resources/server-notifications). After you've connected your app, you can import your products from the stores to start configuring your offerings.
99

10-
Add an **app platform** or **web platform** in the _Platforms_ section of your project settings.
10+
Add an **app config** or **web config** in the _Apps & providers_ section of your app settings.
1111

12-
![Add App Platform](/docs_images/projects/add-app-platform.png)
12+
![Add App Configuration](/docs_images/projects/add-app-platform.png)
1313

14-
![Add Web Platform](/docs_images/projects/add-web-platform.png)
14+
![Add Web Configuration](/docs_images/projects/add-web-platform.png)
1515

16-
## Add a Platform
16+
## Add a Configuration
1717

1818
RevenueCat supports a wide range of stores and payment providers.
1919

20-
### App Platforms
20+
### App Configuration
2121

2222
#### Apple App Store
2323

@@ -48,7 +48,7 @@ To connect your app to the Roku Store, you'll need to add your **App name**, and
4848

4949
- [Where do I find my Roku Pay API Key?](/service-credentials/roku-credentials)
5050

51-
### Web Platforms
51+
### Web Configuration
5252

5353
#### Web Billing
5454

@@ -70,16 +70,16 @@ Paddle is a popular all-in-one payment infrastructure that allows you to accept
7070

7171
## Platform Server Notifications
7272

73-
After adding your platforms, we recommend setting up [Platform Server Notifications](/platform-resources/server-notifications). These notifications will ensure RevenueCat is notified of purchases and subscription events as soon as possible, and will speed up [webhooks](/integrations/webhooks) and integration delivery times.
73+
After adding your configurations, we recommend setting up [Platform Server Notifications](/platform-resources/server-notifications). These notifications will ensure RevenueCat is notified of purchases and subscription events as soon as possible, and will speed up [webhooks](/integrations/webhooks) and integration delivery times.
7474

7575
## Import Products
7676

77-
After adding your platforms, you can import your products from the stores to start configuring your offerings.
77+
After adding your configurations, you can import your products from the stores to start configuring your offerings.
7878

7979
- [Learn more about importing products](/offerings/products-overview)
8080

8181
## Next steps
8282

83-
If you've added your platforms, it's time to install the SDK to start making purchases.
83+
If you've added your configurations, it's time to install the SDK to start making purchases.
8484

8585
<Button href="/docs/getting-started/installation">Install the SDK →</Button>

docs/service-credentials/itunesconnect-app-specific-shared-secret/app-store-connect-api-key-configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ _This key can only be downloaded once_, so make sure you store it in a safe loca
2828

2929
Once everything is set up in App Store Connect, you need to upload the App Store Connect API key from the previous step to RevenueCat.
3030

31-
In the RevenueCat dashboard, select your iOS app from the Apps tab in your project settings.
31+
In the RevenueCat dashboard, select your iOS app from the Apps & providers page in the navigation.
3232

3333
Within your app settings, under the tab App Store Connect API, you'll see an area to upload your App Store Connect .p8 file that you downloaded from App Store Connect.
3434

docs/service-credentials/itunesconnect-app-specific-shared-secret/in-app-purchase-key-configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Select _Download API Key_ and store the file in a safe place, you'll need to upl
3939

4040
Once everything is set up in App Store Connect, you need to upload the In-App Purchase Key from the previous step to RevenueCat.
4141

42-
In the RevenueCat dashboard, select your App Store app from the **Apps** tab in your project settings.
42+
In the RevenueCat dashboard, select your App Store app from the **Apps & providers** page in your project settings.
4343

4444
Within your app settings, under the tab **In-app purchase key configuration**, you'll see an area to upload your In-App Purchase Key .p8 file that you downloaded from App Store Connect.
4545

docs/web/connect-stripe-account.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ To use a Stripe sandbox for testing in RevenueCat Web Billing:
8080
1. Switch to the sandbox you wish to connect to RevenueCat
8181
1. Install the [RevenueCat app](https://marketplace.stripe.com/apps/revenuecat) from the Stripe Marketplace
8282
1. After installation, go to the app settings and connect your RevenueCat account
83-
1. You will need to **create two Web Billing platforms** in the RevenueCat dashboard — one for production, and one for the sandbox connection (we recommend naming them accordingly)
83+
1. You will need to **create two Web Billing configs** in the RevenueCat dashboard — one for production, and one for the sandbox connection (we recommend naming them accordingly)
8484
1. In the billing settings for each platform, make sure the correct Stripe account connection is selected for each one
8585

8686
## Next steps

0 commit comments

Comments
 (0)