FM BetterForms
BF Editorfmbetterforms.com
Engineering Reference Docs
Engineering Reference Docs
  • BF Streaming Proxy
  • Updating the Helper File
  • Connection Trouble Shooting Guide
  • Software Testing - Overview
    • Types of Testing
    • UX/UI Checklist
      • Pages
        • Login ๐Ÿ”‘
        • Pricing ๐Ÿ’ต
        • 404 ๐Ÿคทโ€โ™‚๏ธ
        • Contact Us โ˜Ž๏ธ
        • Sign Up ๐Ÿ‘‹
        • FAQ โ“
        • Blog Post ๐Ÿ—ž
        • Careers ๐Ÿ’ผ
        • Team ๐Ÿ‘ซ
        • Cart ๐Ÿ›’
        • Press ๐Ÿ“ธ
        • Search results ๐Ÿ”
      • Elements
        • Avatar ๐Ÿ˜
        • Badge ๐Ÿ“›
        • Button ๐Ÿ–ฒ๏ธ
        • Card ๐Ÿƒ
        • Table ๐Ÿ“
        • Icon ๐ŸŒ 
        • Text Field โŒจ๏ธ
        • Toggle ๐ŸŽ›๏ธ
        • Loading โณ
        • Modal ๐ŸŽ‰
        • Tooltip ๐Ÿ› 
        • Search ๐Ÿ•ต๏ธโ€โ™€๏ธ
        • Navigation ๐Ÿงญ
        • Radio ๐Ÿ“ป
        • Checkbox โ˜‘๏ธ
        • Tabs ๐Ÿ—‚
        • Toast ๐Ÿž
      • Flows
        • Submitting a form ๐Ÿ“จ
        • Making a payment ๐Ÿ’ณ
        • Contacting support ๐Ÿ†˜
        • Deleting account ๐Ÿ—‘
        • Tracking progress ๐Ÿ“ˆ
        • Resetting password ๐Ÿคซ
        • Showing input error ๐Ÿšจ
        • Entering a promo code ๐Ÿท๏ธ
        • Saving changes ๐Ÿ’พ
        • Canceling subscription ๐Ÿ›‘
      • Topics
        • Responsiveness ๐ŸŽš
        • Typography ๐Ÿ”ค
        • Dark mode ๐ŸŒ‘
        • Accessibility ๐Ÿšน
        • Colors ๐ŸŽจ
        • UX Writing โœ๏ธ
      • Brand
        • Logo ๐Ÿ’ 
        • Social Media ๐Ÿ”‰
        • Typography ๐Ÿ” 
    • FM BetterForms - Quality Assurance
    • JavaScript Libraries
  • Rollbacks and Version Control
  • BF Server Proxy
  • Base code End of Life - 0.8.78-0.8111
  • Setting up Auth0
    • Introduction
    • Getting started
      • Creating a tenant
      • Creating Application
      • Additional customizations
        • Allowed Callback URLs
    • Creating a Database
      • Choosing different login options
        • Social Connections
        • Username and password (Auth0)
        • Creating new BF Users
        • Using Auth0 in an iFrame
        • Configuring FM BetterForms
        • Additional Notes
  • Create an S3 Bucket on AWS
  • ApexCharts - Getting started
  • BF Enterprise Documentation
    • Overview
      • Features
      • Overview Diagram
    • Requirements
    • Env File
    • Setting up the Server
      • Installation
      • Loading image to a local repository
      • Starting server
      • Restarting Policies
      • Scaling up
    • Hardware Recommendations
    • FM Credentials - Helper file
    • How it works
      • Development
      • Downloading environment data
  • BetterForms Error Pages API
    • Introduction
    • Dynamic Error Page
    • Static Error Page
    • Custom error pages
    • Custom error handlers
    • Error Code List
  • BF Streaming API
  • Creating a PWA
    • Introduction
    • Getting Started
      • Making it installable
      • Browser Support
      • Sending Push Notifications
      • Sending a Push Notification from the API Endpoint
      • Adding DOM Header Insertion to be Available for Offline Use
Powered by GitBook
On this page

Was this helpful?

  1. BF Enterprise Documentation

FM Credentials - Helper file

PreviousHardware RecommendationsNextHow it works

Last updated 10 months ago

Was this helpful?

In order to enter the credentials that will be used to connect to your Helper file, you need to login into the enterprise file and use the UI to download the data from the cloud to your local enterprise file.

Once you have all records saved locally, you should have a connection record for each environment that was downloaded. Find the record that needs to be set the credentials in the Connections layout. The credentials will be added in the serverJSON field under the key vault, now make sure itโ€™s under vault and not oauth.vault.

As shown in the image below, you should have a vault key with an empty object.

Add your credentials as an object as follows.

{"username": "FM_USERNAME", "password": "FM_PASSWORD"}

If that still returns an error saying that โ€œFileMaker Helper Credentials missing database name or user or passwordโ€, then add username and password to root path. In this case, the serverJSON object would look like

{
  "active": true,
  "apiKey": "BFAPI_XXXXXXX",
  "commonHookSetName": "app",
  "database": "BetterForms_Helper",
  "domains": ["your.app.domain"],
  "gateway": "DAPI",
  "hostAddress": "your.host.address",
  "id": "SV_YYYYYYY",
  "isDevMode": true,
  "oauth": {},
  "password": "YOUR-PASSWORD",
  "subDomain": "",
  "user": "BetterForms",
  "vault": {}
}