Giter Site home page Giter Site logo

basecamp-php's People

Contributors

chriswoodford avatar dannydorfel avatar k-phoen avatar krizon avatar manavo avatar markbiek avatar natejacobs avatar nickedwards avatar outthislife avatar pdclark avatar ricbra avatar rjkip avatar tplaner avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

basecamp-php's Issues

Application identification

The API docs state application identification is obligatory. I suggest adding one or two keys to the $config array. Perhaps app and app_url?

Can't run unit tests

I'm 100% certain it's me doing something wrong but I can't figure out what it is.

Using PHPUnit 6.5.6, I can get any of the tests to run. I always get a No tests executed message.

Can you offer any guidance on how to properly run the tests?

resources/service.php:30

Hi -

in the getDocumentsByProject you have it set t projects/{id} but it needs to be set to projects/{projectId}.

getGlobalEvents displays only logged in user

Trying to use getGlobalEvents API but it's returning just my events, not any activity of other members working on the projects. Is there a way to display all activity? Thanks.

Missing get project(s) a person has access to.

Added this to my service.php file to get a person's projects.

    'getPersonsProjects' => array(
        'httpMethod' => 'GET',
        'uri'       => 'people/{personId}/projects.json',
        'summary'   => 'Get projects a person has access to.' . PHP_EOL . '[Basecamp API: People](https://github.com/basecamp/bcx-api/blob/master/sections/people.md)',
        'parameters' => array(
            'personId' => array(
                'location' => 'uri',
                'description' => 'Person ID',
                'type' => 'integer',
                'required' => true,
            )
        )
    ),

Updtae createTodoByTodolist?

Hello Markri,

in the basecamp api you can add a date and assign a person to a todo list.
Maybe you can update your service with that feature?

'createTodoByTodolist' => array(
            'httpMethod' => 'POST',
            'uri' => 'projects/{projectId}/todolists/{todolistId}/todos.json',
            'parameters' => array(
                'projectId' => array(
                    'location' => 'uri',
                    'description' => 'Project id',
                    'required' => true
                ),
                'todolistId' => array(
                    'location' => 'uri',
                    'description' => 'Todo list id',
                    'required' => true
                ),
                "content" => array(
                    "location" => "json",
                    "type" => "string",
                    'required' => true,
                ),               
                "due_at" => array(
                    "location" => "json",
                    "type" => "string",
                    'required' => false,
                ),
                "assignee" => array(
                    "location" => "json",
                    "type" => "array",
                    'required' => false,
                )
            )
        ),

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.