GithubHelp home page GithubHelp logo

Comments (3)

pupubird avatar pupubird commented on July 30, 2024

For anyone who is looking into this, here is a work-around script I created:

from autodesk_forge_sdk import OAuthTokenProvider, ModelDerivativeClient
from autodesk_forge_sdk.auth import Scope
import base64


FORGE_CLIENT_ID = ""
FORGE_CLIENT_SECRET = ""
FORGE_BUCKET_ID = ""

client = ModelDerivativeClient(OAuthTokenProvider(
    FORGE_CLIENT_ID, FORGE_CLIENT_SECRET))


# Create job
json = {
    "input": {
        "urn": base64.urlsafe_b64encode(b'<your URN>').decode('utf-8')
    },
    "output": {
        "formats": [{
            "type": "svf",
            "views": ["2d", "3d"]
        }],
        "destination": {
            "region": "US"
        }
    }
}
headers = {}

WRITE_SCOPES = [Scope.DATA_CREATE, Scope.DATA_READ]
res = client._post(
    "/designdata/job",
    scopes=WRITE_SCOPES,
    json=json,
    headers=headers
).json()

print(res)

from forge-sdk-python.

petrbroz avatar petrbroz commented on July 30, 2024

Thank you for bringing this up! The typo has been fixed and will be available in version 0.1.2.

from forge-sdk-python.

pupubird avatar pupubird commented on July 30, 2024

Thanks!

from forge-sdk-python.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.