From 0c9d45186c26ea5845d748beeb57ee43c7ee788b Mon Sep 17 00:00:00 2001 From: Lucy Butcher <89952129+libutcher@users.noreply.github.com> Date: Tue, 14 May 2024 08:45:50 -0400 Subject: [PATCH 1/2] Update README.md with docs links --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9663ffdf..5ecdd0bf 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@
- Examples
+ Documentation | Examples
---
@@ -28,7 +28,7 @@ Before you get started, [create a service account](https://developer.1password.c
1Password SDKs don't yet support using secret references with query parameters, so you can't retrieve file attachments or SSH keys, or get more information about field metadata.
-When managing items with 1Password SDKs, you must use unique identifiers (IDs) in place of vault, item, and field names.
+When managing items with 1Password SDKs, you must use [unique identifiers (IDs)](https://developer.1password.com/docs/sdks/concepts#unique-identifiers-ids) in place of vault, item, and field names.
## 🚀 Get started
@@ -80,3 +80,11 @@ if __name__ == '__main__':
Make sure to use [secret reference URIs](https://developer.1password.com/docs/cli/secrets-reference-syntax/) with the syntax `op://vault/item/field` to securely load secrets from 1Password into your code.
Inside `Client.authenticate(...)`, set `integration_name` to the name of your application and `integration_version` to the version of your application.
+
+
+## 📖 Learn more
+
+- [Load secrets with 1Password SDKs](https://developer.1password.com/docs/sdks/load-secrets)
+- [Manage items with 1Password SDKs](https://developer.1password.com/docs/sdks/manage-items)
+- [1Password SDK concepts](https://developer.1password.com/docs/sdks/concepts)
+
From c243f1b859f9bed1b70f966c9c9572a3bd65b1b1 Mon Sep 17 00:00:00 2001
From: Lucy Butcher <89952129+libutcher@users.noreply.github.com>
Date: Tue, 14 May 2024 08:49:56 -0400
Subject: [PATCH 2/2] Fix anchor
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 5ecdd0bf..e76948d3 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ Before you get started, [create a service account](https://developer.1password.c
1Password SDKs don't yet support using secret references with query parameters, so you can't retrieve file attachments or SSH keys, or get more information about field metadata.
-When managing items with 1Password SDKs, you must use [unique identifiers (IDs)](https://developer.1password.com/docs/sdks/concepts#unique-identifiers-ids) in place of vault, item, and field names.
+When managing items with 1Password SDKs, you must use [unique identifiers (IDs)](https://developer.1password.com/docs/sdks/concepts#unique-identifiers) in place of vault, item, and field names.
## 🚀 Get started