2
votes
1answer
20 views

Returning gzipped content on a Sinatra app

I have a Sinatra app inside a RoR3 app. I defined a Sinatra module and added the following redirect in my RoR3 routes match '/v2', MySinatraModule, :anchor=>false My Sinatra app is serving all ...
0
votes
2answers
52 views

Use JSON result in query using Ruby, Sinatra and Posgresql

I am using Ruby and the Plivo api to create a subaccount. The code is: AUTH_ID = "my_id" AUTH_TOKEN = "my_token" p = RestAPI.new(AUTH_ID, AUTH_TOKEN) params = {'name' => 'thegreatone'} response ...
0
votes
1answer
27 views

Need ruby error message as instance variable

I have a custom error class like this: class EntityCrudError < StandardError attr_reader :action attr_reader :modelName attr_reader :entity attr_reader :errors def ...
2
votes
1answer
56 views

Confusion about ways to use JSON in ruby sinatra application

I'm making a Ruby Sinatra application that uses mongomapper and most of my responses will be in the JSON form. Confusion Now I've come across a number of different things that have to do with JSON. ...
0
votes
2answers
48 views

JSON will not display

I have a Sinatra application that should get image URLs from a JSON file and put them into HTML <img> tags. I can parse through the JSON just fine when I print it to the command line, but when ...
0
votes
1answer
247 views

JSON::ParserError: A JSON text must at least contain two octets! (for non-nil input)

So, I realize two questions have already been asked on this subject, but (unfortunately) my case appears to be different. The Sinatra README says to do the following for POST data: post "/api" do ...
1
vote
0answers
104 views

How can my Sinatra API manage user logins in client apps?

I'm building an API using Sinatra, which should be able to manage the user login sessions for any of the client apps that send requests to it. So far (for the login functionality) what I've got is a ...
0
votes
2answers
52 views

Why does the JSON returned from my Sinatra App give a syntax error?

I'm developing a Sinatra app, which returns JSON, e.g. get '/clients' do # do stuff response = { "success" => "true", "msg" => "Clients successfully retrieved", ...
0
votes
1answer
62 views

Sinatra: concerning filters, halt and body on 404 error

I'm using Sinatra to develop this JSON API. The way I designed it, the error messages are also delivered in JSON in a specific format. The only difference is that they response will have a 4xx status ...
0
votes
1answer
74 views

JSON.parse, Sinatra and Webrick

Trying to figure out why this get '/json_test' do j = '{"key1": "val1"}' JSON.parse(j) end causes this error Internal Server Error can't convert Array into String using the pry gem I ...
2
votes
1answer
228 views

Ruby (Sinatra) JSON.parse do not work with json data

I'm geting json object from knockout.js with ko.toJSON self.cmaterials = ko.observableArray([]); .... ko.computed(function() { $.ajax({ url: "/editcmat1", type: "PUT", ...
1
vote
0answers
141 views

Rails 3.2 Sinatra mounted app JSON Parse errors

I have a sinatra app mounted inside a rails 3.2.12 app which accepts JSON posts. The problem is that I get an error when one of the strings contains an asterisk(*) or a harsh(#) symbol. These are ...
0
votes
1answer
59 views

Calling to_json on an array with different methods on each object

I have a sinatra service returning a json array of objects to my rails app. The objects are all of different types. I'm trying to pass the :methods option to the to_json call, but each object needs ...
0
votes
3answers
203 views

POST error with Sinatra with JSON

I'm learning Ruby + Sinatra, and found a good post here which talks about how to upload files. post '/upload/:filename' do userdir = "./upload" FileUtils.mkdir_p(userdir) unless ...
0
votes
0answers
114 views

How to use Sinatra to construct a web service that uses POST and JSON? [closed]

Is there any tutorial/sample code that can help us using this? I would like to build a web service that use JSON as a way to handle data between client and server, and use POST (let say) to upload a ...
2
votes
1answer
196 views

Load a haml view into layout on Ajax request through Sinatra controller

i'm implementing a live-search-function into my page.. I have the following simplified sinatra controller get '/search_item/:for' do //do some search stuff haml :search_item,:layout => ...
0
votes
1answer
106 views

How to avoid escaped quotes in received JSON data for use as a Ruby hash?

I'm building a publication in Ruby/Sinatra which responds to a GET call (from the API server, which I don't have control of) with two parameters ("local_delivery_time" and "tubelines") in JSON. At the ...
2
votes
2answers
208 views

Ruby to_json on object to output instance variables

I'm using Sinatra and trying to output an object in JSON by using the 'json' gem and calling the .to_json method. I expected the output to be JSON with the symbols in the attr_reader section and their ...
0
votes
0answers
53 views

Simple API to handle get & update [closed]

Looking for ideas for creating a dead simple API that will return the json of basically 4 fields lat long date title it should be able to get them and set them. no real need for a history and ...
1
vote
1answer
210 views

RABL renders ActiveRecord timestamps or datetimes as numbers instead of strings

I'm currently in the process of switching from ActiveRecord's as_json to RABL for API generation. as_json has been rendering timestamps in my models as strings of the format ...
0
votes
1answer
365 views

Posting JSON params from java to sinatra service

I have an android app posting to my sinatra service. Earlier I was not able to read parameters on my sinatra service. However, after I set content type to "x-www-form-urlencoded". I was able to see ...
0
votes
0answers
123 views

Looping through API results

I am trying to become more comfortable with Ruby and Sinatra by working with Spotify's free metadata API (https://developer.spotify.com/technologies/web-api/search/). Currently, my code takes a form ...
2
votes
2answers
1k views

Sinatra controller params method coming in empty on JSON post request

I've got a Sinatra app and in most of my controllers json comes in and is picked up automatically in the params object. However, I've got a post action that doesn't get the params at all unless I play ...
0
votes
1answer
130 views

JQuery POST to Sinatra API Same Origin Policy

I have developed an application using Sinatra for the API and jquery/html5/phonegap for the client side. I have problems testing my application from a simple html5 that basically post a request to my ...
0
votes
1answer
175 views

JSON Post on Sinatra with Rails3

I am working on APIs and I have used Sinatra and Rabl for develop APIs for Rails app. Now I am having one issue when iOS developer post data in JSON format The url is: '/users/2/contacts' and a post ...
0
votes
2answers
522 views

Sinatra App JSON and Routes

Scenario I have a Sinatra App I have a route that fetches articles based on a certain named path # Get Articles for a certain time period get '/frontpage/:type' do case params[:type] when ...
0
votes
0answers
141 views

building api server and client stack - MUST or SHOULD client requests be in JSON format?

I am building a REST JSON API server stack. Expects the API server to be accessed by desktop applications, smartphone applications, desktop browsers, smartphone browsers, backend webservices and AJAX ...
2
votes
1answer
239 views

Very slow running as_json (Mongoid + Sinatra)

I'm using Sinatra (1.3.2) with Mongoid (2.4.10). I'm noticing that it is taking a VERY long time to convert about 350 mongo documents to JSON. I added a few benchmark wrappers just to see what is ...
0
votes
1answer
156 views

Sinatra route returning enumerator instead of json object

I am trying to do the following in a sinatra route: get '/posts/:id' do Post.find(params[:id]).to_json end But this is returning an enumerator. How do I access a single object in json format? ...
0
votes
0answers
205 views

Sinatra converting backslash to forward slash

The JSON I'm posting to my webserver looks like this: "qry_when":["date_is_in(\"X:\\Finqueries\\Dates\\earnings files\\earnings.wmt.txt\")"] but in my sinatra code, apost '/parsequery/*' do ...
1
vote
2answers
529 views

How to specify json format for Sinatra route with named parameter?

How do I add ".json" to a Sinatra route which includes a named parameter such as get '/view/:name' ? I thought get '/view/:name.json' might work but I get an "Unable to access path /view/name.json" ...
1
vote
1answer
254 views

How do I properly put embedded ruby code in to JavaScript?

I am trying to embed the output of Ruby code in JavaScript: var stuff= "<% Representative.get('http://0.0.0.0:4568/') %>"; The embedded part is working by itself showing a result like this: ...
0
votes
0answers
239 views

Sinatra -read sqlite, output json

Being a total ruby noob who found sinatra over the weekend i'm trying to setup a local json feed for developing a mobile app. Every example shows how to access the sqlite file,define a model and then ...
2
votes
1answer
2k views

Generating JSON for Sinatra

I'm having an issue with passing the generated JSON notation of my object to my Sinatra application. The problem I have is twofold: I have 2 classes that are mapped to a database using the Sequel ...
1
vote
2answers
734 views

Can't receive JSON object with Rack ruby server

i have a very simple ruby rack server , something like : app = Proc.new do |env| req = Rack::Request.new(env).params p req.inspect [200, { 'Content-Type' => 'text/plain' }, ['Some body']] ...
0
votes
1answer
179 views

How do I get the substring of a JSON output?

I want to render a simple JSON from an array. array = ["valueid",true] render :json=>array which returns: {"json":["valueid",true]} but I don't want the JSON. The only part I want is: ...
1
vote
2answers
2k views

Creating a route with Sinatra to only accept a certain Content-type

I'm trying to create a route with Sinatra that only accepts POST with an Content-type: application/json without success. My approach is as follows: post '/dogs', :provides => :json do # returns ...
1
vote
0answers
396 views

Javascript array serialized in JSON enclosed in quotes, like a string

In my web application, why do JSON.stringify serialize my Activity's Trackpoints array as a string? Notice in the JSON representation on top that the trackpoints array is enclosed in quotes, rendering ...
2
votes
1answer
556 views

How, in Sinatra, to pass a Request Body to other classes?

I'm using a Sinatra app to receive server requests and I want to dissect them in a separate class I call "request", but when I pass the request object the body gets dropped. Trying to read the ...
1
vote
1answer
2k views

Ruby Sinatra simple app - Raw POST Data

I'd like to setup a simple Sinatra app up to capture the raw POST data that gets sent to the the / URL and save this data to the file system as a file with the format YYYYMMDD-HHMMSS.json. The data I ...
2
votes
2answers
2k views

Ruby: JSON.parse returns undefined method `bytesize' for

response = Typhoeus::Request.get("http://localhost:3000/api/api_email/#{@api_id}.json") JSON.parse(response.body) The response is a JSON object but I get an error when trying to parse it. ...
0
votes
2answers
567 views

replacing a value in a json array with sinatra

I have records with a 'resource' field which can contain multiple resources. When I return this data, I need to iterate over this field and return an individual record for each value in the field. I ...
11
votes
4answers
4k views

Decoding Facebook's signed request in Ruby/Sinatra

Due to Facebook deprecating new FBML, I'm looking for a new way to create a "reveal" tab (a page tab that shows one version to fans and another to non-fans). Facebook has added data to the ...
13
votes
1answer
5k views

Set default content_type for Sinatra

In Sinatra, is it possible to make content_type 'application/json' the default? cause I'm writing an api.
2
votes
1answer
8k views

How can I parse json and write that data to a database using Sinatra and DataMapper

I'm doing a proof of concept thing here and having a bit more trouble than I thought I was going to. Here is what I want to do and how I am currently doing it. I am sending my Sinatra app a json file ...
20
votes
4answers
9k views

Rails 3 vs Sinatra

For my next web application, I'm debating whether to use Rails 3.x or Sinatra. I would like to use the server to provide user authentication, application-triggered emails, a fairly complex data ...
0
votes
1answer
2k views

Automatically encode Rack output with JSON when Content-Type is application/json

I've got a modular Sinatra app and I'd like to encode the output as JSON when the content-type dictates. At the moment I'm doing so manually in my routes: get 'someroute' do # content-type is ...
1
vote
4answers
4k views

Sinatra, JavaScript Cross-Domain Requests JSON

I run a REST-API build on top of Sinatra. Now I want to write a jQuery Script that fetches data from the API. Sinatra is told to response with JSON before do content_type :json end A simple ...
0
votes
1answer
1k views

How can I randomize DataMapper collection and convert it to JSON?

I'm pulling my hair out trying to build a little random photo JSON feed using DataMapper/Sinatra. Here's what I have so far.. Photo.favorites.to_json(:methods => [:foo, :bar]) So that works ...
1
vote
2answers
813 views

mutidimensional array from javascript/jquery to ruby/sinatra

how do I pass a 2-dimensional array from javascript to ruby, please? I have this on client side: function send_data() { var testdata = { "1": { "name": "client_1", ...