diff --git a/_src/_guide/_setup.md b/_src/_guide/_setup.md index f2bb5a3..70371b0 100644 --- a/_src/_guide/_setup.md +++ b/_src/_guide/_setup.md @@ -21,30 +21,22 @@ pip install -U bigchaindb-driver ``` -Then, include that as a module and connect to any BigchainDB node. You can create your own `app_id` and `app_key` on [BigchainDB Testnet](https://testnet.bigchaindb.com). +Then, include that as a module and connect to any BigchainDB node. ```js const BigchainDB = require('bigchaindb-driver') -const API_PATH = 'https://test.bigchaindb.com/api/v1/' -const conn = new BigchainDB.Connection(API_PATH, { - app_id: 'Get one from testnet.bigchaindb.com', - app_key: 'Get one from testnet.bigchaindb.com' -}) +const API_PATH = 'https://test1.testnet2.com/api/v1/' +const conn = new BigchainDB.Connection(API_PATH) ``` ```python from bigchaindb_driver import BigchainDB -conn = BigchainDB( - 'https://test.bigchaindb.com', - headers={'app_id': 'Get one from testnet.bigchaindb.com', - 'app_key': 'Get one from testnet.bigchaindb.com'}) +conn = BigchainDB('https://test1.testnet2.com') ``` ```java BigchainDbConfigBuilder - .baseUrl("https://test.bigchaindb.com/") - .addToken("app_id", "Get one from testnet.bigchaindb.com") - .addToken("app_key","Get one from testnet.bigchaindb.com").setup(); + .baseUrl("https://test1.testnet2.com/").setup(); ``` diff --git a/_src/_guide/tutorial-car-telemetry-app.md b/_src/_guide/tutorial-car-telemetry-app.md index fe8d8ae..87fcd50 100644 --- a/_src/_guide/tutorial-car-telemetry-app.md +++ b/_src/_guide/tutorial-car-telemetry-app.md @@ -72,12 +72,7 @@ const Orm = require('bigchaindb-orm') class DID extends Orm { constructor(entity) { - super( - API_PATH, { - app_id: 'Get one from testnet.bigchaindb.com', - app_key: 'Get one from testnet.bigchaindb.com' - } - ) + super(API_PATH) this.entity = entity } }