Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

404 error #58

Open
ianaltosaar opened this issue Sep 3, 2021 · 0 comments
Open

404 error #58

ianaltosaar opened this issue Sep 3, 2021 · 0 comments

Comments

@ianaltosaar
Copy link

ianaltosaar commented Sep 3, 2021

Hi

Did everything in the tutorial. Everything else gave an error.

`<?php
namespace Autodesk\ForgeServices;
use Dotenv\Dotenv;

class ForgeConfig{
private static $forge_id = null;
private static $forge_secret = null;
public static $prepend_bucketkey = true; //toggle client ID prefix to avoid conflict with existing buckets

public static function getForgeID(){
  $forge_id = '';
  if(!array_key_exists('FORGE_CLIENT_ID', $_ENV)){
    // load the environment variable from .env into your application
    $dotenv = Dotenv::create(__DIR__);
    $dotenv->load();
  }
  $forge_id = $_ENV['FORGE_CLIENT_ID'];
  return $forge_id;
}

public static function getForgeSecret(){
  $forge_secret = '';
  if(!array_key_exists('FORGE_CLIENT_SECRET', $_ENV)){
    // load the environment variable from .env into your application
    $dotenv = Dotenv::create(__DIR__);
    $dotenv->load();
  }
  $forge_secret = $_ENV['FORGE_CLIENT_SECRET'];
  return $forge_secret;
}

// Required scopes for your application on server-side
public static function getScopeInternal(){
  return ['bucket:create', 'bucket:read', 'data:read', 'data:create', 'data:write'];
}

// Required scope of the token sent to the client
public static function getScopePublic(){
  // Will update the scope to viewables:read when #13 of autodesk/forge-client is fixed
  return ['data:read'];
}

}
`
Dotenv:create like suggested in the tutorial here on GitHub gives 404 error localhost page can't be found. Is there something else here that we are missing?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant