Questions tagged [frapi]

FRAPI is a high-level API framework that puts the “rest” back into RESTful. Use it to power your web apps, mobile services, and legacy systems.

FRAPI is a high-level API framework that puts the “rest” back into RESTful. Use it to power your web apps, mobile services, and legacy systems.

12 questions
3
votes
1 answer

Connect android app with FRAPI

i have FRAPI in local and it works, i create a action and is ok! but now if i try to consume this action with my android app, i try: http://api.frapi/getusertype.json?user=122312 but not works if i…
FelasDroid
  • 623
  • 3
  • 10
  • 26
2
votes
3 answers

installing frapi on mamp?

Ok, so Frapi (http://getfrapi.com/) looks pretty cool. But for us non-server-gurus who just want to build an quick api for our client-side apps (the people who need stuff like frapi), the install docs at http://frapi.github.com/installing/index.html…
nicholas
  • 14,184
  • 22
  • 82
  • 138
1
vote
0 answers

Problems with Frapi-Framework

I'm trying to set up Frapi on an Debian 9.1 Server. Not every step from "http://frapi.github.io/installing/" did work. Since days getting only this answer: "Internal Server Error The server encountered an internal error or misconfiguration and…
J. Keller
  • 33
  • 4
1
vote
2 answers

(Frapi API) How to get Frapi_Database::getInstance() without class or function(Outside MAMP and FRAPI Environment)?

I am setting up cron job in mac using crontab command. I am using MAMP PRO as a local server environment for FRAPI API. But I can not get Frapi_Database::getInstance() without using class or function in my simple PHP Script... Actually function…
Ponting
  • 2,248
  • 8
  • 33
  • 61
1
vote
2 answers

How to set up cron job in php(for iPhone application)

In iOS application, I have to set up cron for sending notification to particular device after every 5 minute.I am using frapi API. I searched on it and found that i have to create cron entry like this : /etc/cron.d/ */5 * * * * root cd…
Ponting
  • 2,248
  • 8
  • 33
  • 61
1
vote
0 answers

Retrieve a file from an API action using FRAPI

I am using frapi as my API framework, and am looking to make an Action to that will send a file to the client making the request. For example https://api.domain.com/list/today will return a .csv file to the client. I have put some thought into this…
wachpwnski
  • 678
  • 1
  • 5
  • 11
0
votes
1 answer

How can I get everything in alias rewritten from http://hostname/ to http://hostname/alias/?

I have FRAPI framework installed on the windows server in the intranet under apache alias. # Frontend Alias /api "D:/var/www/api_dev/public" # Backend Alias /api_admin "D:/var/www/api_dev/admin/public" The .htaccess file for admin part looks…
Artur Kedzior
  • 3,994
  • 1
  • 36
  • 58
0
votes
1 answer

PHP request to FRAPI action not executing, returning null

I'm not sure what changed in the system I'm working on, but all of a sudden FRAPI stopped giving responses to requests I make. For example, I have an action with an executePost() function that returns a string of hex values. I have code that…
Cubis
  • 297
  • 2
  • 10
0
votes
3 answers

Is there a REST Web Services API provider like FRAPI (PHP) but for Java?

I recently discovered FRAPI for PHP. It's a REST Web Services High-level API provider that lets you build REST API web services easily, it has three great features: It generates XML and JSON responses automatically. It generates API Documentation…
Miguel A. Carrasco
  • 1,379
  • 1
  • 15
  • 26
-1
votes
1 answer

Frapi API throws 500 error for correct action url, otherwise throws ERROR_INVALID_ACTION_REQUEST

I've been trying to configure the FRAPI framework for the last three day on AWS. I have configured the admin panel without errors, but, for some reason, the API portion isn't work. I can, however, access the API homepage, which is pulling actions…
Jerad
  • 594
  • 7
  • 15
-2
votes
1 answer

Frapi API Documentation Page not workign

Frapi API Documentation Page not workign properly after i have synchronize. but all other things are perfectly working. only the API Documentation Page load half way through.
Kombuwa
  • 1,613
  • 4
  • 20
  • 35
-3
votes
2 answers

mysql_insert_id always returns 0

$userName = $this->getParam('userName', self::TYPE_STRING); $db = Frapi_Database::getInstance(); $sql = "INSERT INTO user (userName) values ('".$userName."')"; $stmt = $db->prepare($sql); $stmt->execute(); …
keen
  • 3,001
  • 4
  • 34
  • 59