I would like to save all of the messages that go through an Amazon SNS stream to a database.
Is it possible to set up Dreamfactory to act as an endpoint for an SNS subscription?
I would like to save all of the messages that go through an Amazon SNS stream to a database.
Is it possible to set up Dreamfactory to act as an endpoint for an SNS subscription?
ok, my bad. I didn't run php artisan dreamfactory:setup the second time after creating the .env file. All good now.
The only S3 connection I could find using the DreamFactory management page is AWS S3 connection. This doesn't allow you to specify custom S3 endpoint like s3.myserver.com/myBucket.
It only goes to aws endpoints.
My question is exactly it, how do I specify any s3 endpoint ?
Thank you,
FYI, more Node examples in the docs here http://wiki.dreamfactory.com/DreamFactory/Tutorials#Node.js
The workaround I am doing is creating a remte web service for AWS SNS as a remote web service. It's quite complex and I am doing it only for post to application method.
Hi ,
I have json stored in my table
[{"relativeId":"446","relationStatus":"F"},{"relativeId":"447","relationStatus":"F"}]
Dreamfactory REST API is adding backslash in the output
[{\"relativeId\":\"446\",\"relationStatus\":\"F\"},{\"relativeId\":\"447\",\"relationStatus\":\"F\"}]
Can you advise what could be done to correct this ?
I am getting the same problem on a microsoft azure image - > DreamFactory 2.1.0-4-r05 (Ubuntu 14.04) . It's a fresh install. What can I do ?
@Prathamesh_Gaddam using the instructions provided on GitHub here you should be able to gain an understanding of the different deployment options.
@jeebee I believe the cacert.pem files require updating, we should be rolling out new Bitnami images fairly soon that address this problem.
Didnt anyone else face this issue ? Any advise here is much appreciated.
Where can i find the ngDreamFactory?
Just wanted to know how did you use mongodb in dreamfactory to produce dashboard.
I want to produce aggregate information stats to use as part of a dashboard.
Have no idea how to do this with the mongodb dreamfactory api docs
The new IP address of the dashboard is http://104.154.27.110/d2dmdash/index.html
MongoDB in DF is storing the individual base objects for the 3 kinds of dashboard data I am showing and then this page is fetching and manipulating that data in highcharts to show them. BTW, this is not the final or production version but just a temporary one to see and work with DF data. The final one will not expose the DF-API key but instead will use JWT tokens.
I found the script here:
https://github.com/milo-hyben/angular-dreamfactory
There's some useful info there as well. But the main thing to do is put the angular-dreamfactory.js in your files and link to it in your index.html:
<script src="lib/angular-dreamfactory/angular-dreamfactory.js"></script>
Hope that helps.
Hi,
I am not able to follow this workflow here. What I have done so far:
- created a service for Google and Facebook OAuth
- created a role which has access rights for everything
- downloaded and installed the JS demo app AddressBookForJavascript and run it in apps
What do I want to achieve?
One of these:
- Login in Dreamfactory with FB or Google
- Login in the demo app
- Access SOMETHING like .../api/v2/user/session
What works so far is, that when I click on the login button for Google on the DF login page, I am redirected to Google, where I can grant the access. I am redirect to whatever I configured as redirect_url (e.g. .../files/AddressBookForJavascript/add_javascript/index.html?service=goolge or .../?service=google or /api/v2/user/session?service=google)
In the redirected url the adress contains infos like code and state session_state and authuser=0. But I am not logged in.
In my opinion, when I got redirected back to DF after granting the request in Google, DF should take the grant token and exchange it in an access token, which does not seem to happen.
Also the curl example above is not working for me.The first three steps are easy, but how do I login in in Facebook or Google with curl? I have taken the Google Location and used it in a browser, acceprted it and have taken the code from there and continued with the next crul step, but same result, I have no access to .../api/v2/user/session?service=google, DF complains that no session is set in this case.
Any advice what I can check for using OAuth in DF to give access rights to users? Just some mor Infos I am using the Bitnami stack of DF 2.1 and I have not configured any "Service Definition" with Swagger. I am sticking to the Facebook docu and to to posted comments on this page.
Hello,
So I'm gonna let users to set the last_name to blank when registering. If last_name be blank DreamFactory automatically fills the Display Name with repeated first_name. And I don't wanna that.
Is it possible to make Display Name only have first_name's value?
even cleaner:
string obj = "{ \"email\": \"somebloke@email.com\", \"password\": \"iforgot\", \"duration\": 0 }";
var o = Newtonsoft.Json.JsonConvert.DeserializeObject< dynamic >(obj);
..then you can do:
.body(o).asJson();
Thank you
i'm trying to read the DB docs reversely , so the latest docs comes up first , with pagination using skip and limit, but it seems that DF is reversing only the selected range .
anyone noticed ?
Is it possible to see MongoDB service in Data section in admin panel? Just like SQLite and MySQL services.