It’s Cybersecurity Awareness Month! Join our interactive training session, or learn about security and AI from 1Password experts.
integrations
53 TopicsCannot create now service account or rotate token
I'm having trouble creating new service account or rotating existing service account token with 500 error: Attempts via op CLI fails as well. $ op service-account create ... [ERROR] 2025/10/20 17:01:12 (500) Internal Server Error: Server experienced a fatal error. There's no sign of outage in service account at https://1password.statuspage.io/. Has anyone experienced the same thing?21Views0likes2CommentsDesktop Integration Cannot Find App
Hi All, Just started testing out the Desktop Integrations approach and seem to be running into an error with actually loading the app itself. Python is raising a FileNotFoundError and seems to not be able to find a library file in my 1Password Desktop application. I'm not sure how readily I can share further logs without leaking project details or system specifics, but the files that the integration is erroring on are: lib_path = '/Users/wileydavis/Applications/1Password.app/Contents/Frameworks/libop_sdk_ipc_c'+11 │ │ │ │ locations = [ │ │ │ │ │ '/Applications/1Password.app/Contents/Frameworks/libop_sdk_ipc_client.dylib', │ │ │ │ │ '/Users/wileydavis/Applications/1Password.app/Contents/Frameworks/libop_sdk_ipc_c'+11 │ │ │ │ ] │ │ │ │ os_name = 'Darwin' #beta-sdk-desktop-integrations23Views0likes1CommentIntroducing 1Password SDKs for Desktop Integrations
We’re excited to announce new authentication capabilities in the 1Password SDKs! Developers can now build integrations that authenticate directly through the 1Password desktop app using the same trusted methods users already know —Touch ID, their account password, or other supported options. 🏗️ What this unlocks: Native and seamless integrations: Build integrations that connect directly with the 1Password desktop app using the SDK. It’s a secure, native way to integrate with 1Password — no extra setup or dependencies required. Human-in-the-loop workflows: Enable user-scoped authentication in your integrations to support secure, approval-based workflows that keep users in control. Easy to build and adopt: Simplifies integration setup and makes authentication effortless for end users. Now available in public beta for macOS and Linux in the SDKs for Go, JavaScript, and Python. 💬 Share feedback, get swag We’d love to hear how this feature performs in your integrations — is it reliable and easy to use in your workflows? What would you like to see next? 📖 Read the docs to get started 🧢 The first 10 developers to share feedback on the 1Password Developer Community Hub by November 30th will receive exclusive 1Password swag. Be sure to tag your post with #beta-sdk-desktop-integrations.65Views1like0CommentsNew Item Type recommendation: API Keys
I would like to see a new item type: API Key for securely storing machine-to-machine credentials used in development and automation. It would include fields for the key, environment, service name, expiration, rotation schedule, and scope. This would help developers separate API credentials from personal passwords, reduce misuse, and support compliance best practices. This important because API keys are generally created and shared only once. Being able to store these safely in 1Password would be a big help. By having a new Item type, these can be more easily browsed as a group. Recommended Required Fields Field Name Type Purpose Service Name Text Identifies the platform or API (e.g., “OpenAI API”). API Key Concealed The actual secret string; hidden by default, revealable on demand. Environment Text/Selection Helps differentiate between “Production,” “Staging,” or “Development.” Key Type Text/Selection Identifies the key’s purpose — e.g., “Secret,” “Public,” “Bearer Token,” “Client Token.” Created Date Date Tracks when the key was generated. Recommended Optional Fields Field Name Type Purpose Description Text (multiline) Freeform notes about usage, permissions, quotas, etc. Service URL / API Console URL URL Direct link to the managing website or API dashboard. Expiration Date Date Useful for keys with rotation or expiration requirements. Key Owner / Issued To Text Identifies who or which system owns the key. Scopes / Permissions Text Lists the granted permissions or access scopes. Rotation Schedule Date or Text Next planned rotation or rotation policy (“every 90 days”). Linked Account Reference or Text Optional link to the related Login item or user account. Tags Text (multiple) Categorization (e.g., “AWS,” “internal,” “low risk”). Attachment File (optional) Store related configuration files like .env or key manifests.26Views1like2CommentsAttachments not visible when shared
Hello, I am using op cli in powershell (windows) to create new secure note with the password and file attachment. Everything is working at this point. Then I am using another call to share that secure note with external user. Once I share the uri with the end user, he can access the secure note and it's secret, but he does not see any attachments. If I share manually from the desktop app the same secure note, then it works and user sees the file. Interestingly, if I use python SDK and this example https://github.com/1Password/solutions/tree/main/1password/onepassword_sdks/demo-share-script then end user can access file too. So is this a limitation from op.exe? If yes, do you have a roadmap to support it?13Views0likes0Comments1Password Connect and Plan Upgrade
Hi im currently using 1password team edition and looking to upgrade to Buisness, and have a question. Upgrading will that affect the token that i have and will i have to reissue it? Secondly, we'd also be looking to enable SSO would that also impact the usage of the token, also when troubleshooting we make use of 1password desktop would that impact the desktop usage as well?18Views0likes0CommentsHow do I use the SSH agent in headless Linux?
I want to clone a Git repository that needs SSH authorization. On my desktop this is straightforward: I have the 1Password app installed and the SSH agent enabled in its settings. git clone with an SSH URL makes the desktop app prompt me for approval and I get connected properly. However I want to clone a repository in a Debian Linux LXC. It does not have any GUI installed; I can only connect to it via a shell. I have the 1Password CLI app op installed and connected properly because op vault list works. However I cannot use the SSH agent: # ssh-add -l Could not open a connection to your authentication agent. My ~/.ssh/config looks like: Host * IdentityAgent ~/.1password/agent.sock More context about my CLI installation which is installed from the 1Password Debian repository: # apt info 1password-cli Package: 1password-cli Version: 2.31.1-2 Maintainer: 1Password <support@1password.com> Installed-Size: unknown Homepage: https://agilebits.com/ Vendor: 1Password <support@1password.com> Download-Size: 6729 kB APT-Manual-Installed: yes APT-Sources: https://downloads.1password.com/linux/debian/amd64 stable/main amd64 Packages Description: The official 1Password command-line tool. # op --version 2.31.1 I don't have a ~/.1password directory so the agent is not set up or not running. How can I get it running without a GUI to approve its use?Solved154Views0likes4CommentsFeature Request: API Endpoints for 1Password Usage Reports
Today, it doesn't look possible to pull the usage reports via API. We have clients who request these reports, and having to login to each customer and manually pull the report from within the Admin portal can be very time consuming. Having the ability to pull these reports via API would speed up this process, and even allow us to schedule these reports.47Views2likes2CommentsSSH Bookmarks don't support Port Numbers
It's fairly common to run SSH on non-standard ports. But it appears 1Password does not support this. Per https://developer.1password.com/docs/ssh/bookmarks/ for IPv6 you would use `ssh://user@2001:DB8:a8b0:5678::200c` which is a problem because ports are usually specified with a : as well. The URL standard is to use brackets, so `ssh://user@[2001:DB8:a8b0:5678::200c]:2222` would be the syntax which makes the most sense. Could this support be added to 1Password?34Views0likes2CommentsDeveloper Doc "bugs"
As we are starting to develop utilizing 1Password SDK, I have been finding some "bugs" in the documentation. I would love to see these updated (to help other people). We have been having to create our own internal documentation. From: https://developer.1password.com/docs/sdks/manage-items/#update-an-item Update an item To update an item, fetch the item you want to update, specify the changes you want to make, then pass the updated item to the client.Items.Put function. # Update a field in your item item.fields[0].value = "new_value" item.websites.append( Website( label="my custom website 2", url="https://example2.com", autofill_behavior=AutofillBehavior.NEVER, ), ) updated_item = await client.items.put(item) Website is not a data type: NameError: name 'Website' is not defined From the page: https://developer.1password.com/docs/sdks/concepts/#field-types There is no Data Type "Website", but there is a Data Type "Url", which I also tried, and it does not work either: NameError: name 'Url' is not defined I finally, looking at the source code figured out that I had to do yet another "import": from onepassword.types import ItemField, Website, AutofillBehavior to make this work. Is there other documentation pages that go over all the other parts of "types.py" that tell us when they are used, where it is used, and how to do import for them? Same goes for other code pages (secrets, items, errors, vaults, etc..)37Views0likes2Comments