Questions tagged [basecamp]

Basecamp is a web-based project-management tool developed by 37signals and launched in 2004. The Ruby on Rails framework was extracted from the Basecamp project. Basecamp has a "classic" and a "new" version.

The Basecamp API is based on JSON and can be found here.

Click here for Wikipedia article on Basecamp Classic: Basecamp Classic

184 questions
0
votes
1 answer

Use Basecamp (BCX) API with Yeoman

I want to write a Yeoman generator to setup new projects. During this process, I want it to create a new project in Basecamp. Is it possible to hit the BCX API — or any API for that matter — with Yeoman? And how would I do this?
Robert Cordes
  • 381
  • 2
  • 14
0
votes
1 answer

Basecamp API integration in ios

I need to implement Basecamp API for iphone app. I searched on google and got a Git hub link: https://github.com/37signals/bcx-api It say that the API is rest based but I am not able to understand how to call this api. I also not able to figure out…
Kapil Choubisa
  • 5,152
  • 9
  • 65
  • 100
0
votes
1 answer

Echo specific values from multidimensional array PHP Basecamp

I try to echo a value from a multidimensional array but somehow I can't figure it out. The structure of this array is as followed: todos remaining …
J.I.N Kleiss
  • 187
  • 1
  • 2
  • 12
0
votes
1 answer

Basecamp API using cURL and PHP

I'm trying to connect to the basecamp api (json) using PHP + cURL, but all my attempts have failed, and I'm not sure why. The end goal is to build a dashboard that displays information from basecamp projects to team members over http.
user1270150
  • 53
  • 2
  • 7
0
votes
1 answer

How do I add something to BaseCamp's events section like github in c#

The github integration with Basecamp adds items to the progress and events section of Basecamp without actually adding a message, calendar, todo, etc. When looking at the api https://github.com/37signals/bcx-api the events are all read-only. I tried…
Matthew Kruskamp
  • 1,887
  • 2
  • 14
  • 31
0
votes
1 answer

Save webpage that has updated content via ajax

Is there a way to save a webpage that has had it's content updated via an ajax request? I need to save basecamp message threads but can't export as I am not the account owner. As expected, the original source will only save the original content and…
CoreyRS
  • 2,227
  • 3
  • 26
  • 44
0
votes
1 answer

Can't connect to Basecamp API with gtm-oauth2

I spent the last day (note: novice Objective-C programmer, but lots of experience in other languages) figuring out why gtm-oauth2 wouldn't connect to Basecamp API but now I've given up and asking here. So I have an app that was written from scratch…
Miha Rekar
  • 1,237
  • 12
  • 15
0
votes
1 answer

Basecamp API classic - Order people by name (alphabetically)

I'm retrieving a list of people via Basecamp API classic, except it seems to come ordered by ID. I followed the documentation to do so, here is a simplified version of the echoing part: foreach($persons as $person) { $firstName =…
morgi
  • 1,005
  • 3
  • 17
  • 24
0
votes
1 answer

.Net Key based caching. Touching dependant models

From http://37signals.com/svn/posts/3113-how-key-based-cache-expiration-works "You deal with dependency structures by tying the model objects together on updates. So if you change a todo that belongs to a todolist that belongs to a project, you…
MaxWillmott
  • 2,170
  • 2
  • 23
  • 34
0
votes
1 answer

Basecamp API POST calls not working

I'm trying to simply add a todo to a todolist. I have a pretty basic function here, which I know is authenticating, and it does give me permission denied errors if I have my wrong password. When I run it with all the correct info, it returns an…
Damon
  • 10,493
  • 16
  • 86
  • 144
0
votes
1 answer

Basecamp API authentication with OAuth2: internal checksum failed error

I'm trying to write a CodeIgniter controller to handle OAuth2 authentication for the 37signals' Basecamp API. The problem is I keep encountering the 'internal checksum failed' error, when trying to connect (via cURL) to…
WNRosenberg
  • 1,862
  • 5
  • 22
  • 31
0
votes
1 answer

How to return a list of all email addresses associated with a company using the basecamp API

I've managed to get this to almost work but I think I'm getting something seriously confused. All the examples seem to cover finding single records based on their id. I thought I would be able to pass a param to filter on a single…
gilesw
  • 101
  • 1
  • 4
0
votes
1 answer

Issue with OAuth authentication for the new Basecamp Api using OAConsumer

My code looks something like this : OAConsumer *consumer = [[OAConsumer alloc] initWithKey:@"my_ClientID" secret:@"my_Secret"]; NSURL *url = [NSURL…
Shyam Bhat
  • 1,600
  • 13
  • 22
0
votes
1 answer

Example of Basecamp API ruby wrapper usage

I've set up a new Rails 2.3.2 app and added the Basecamp API ruby wrapper to my /lib directory from here: http://developer.37signals.com/basecamp/basecamp.rb In my application_controller.rb I have created the following method to enable calls to…
simonyoung
  • 845
  • 3
  • 10
  • 22
0
votes
1 answer

Basecamp Classic API cURL update multiple calendar entries

Cannot seem to update calendar entries from terminal with classic API. This below currently gets me the xml for a specific calendar entry, but does not POST an update successfully. I'm looking to update multiple calendar entries at one time if…
1 2 3
12
13