function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Kapil KaushikKapil Kaushik 

Getting data from third party

Explaining my scenerio - 

My app is using some data(Some numbers) which generally changed in 2-6 months. And my app calcualte some percentage based on that data. Currently I am implementing this thing in the following way - 

1) I have written a web service which return the data using Heroku on which I am performing some calculation in my app.

can there be some other soloution from where can I keep that data ?
James LoghryJames Loghry
Where do you want to keep it?  You can run a db on heroku, such as Mongo DB.  You could call a custom RESTful or soap service in Salesforce to store the data. Just depends on your requirement / where you want to store the data...
Kapil KaushikKapil Kaushik
Thanks James for your reply.

Actually I don't want to integrate third party apis because this will cause problem in Security review pass of my app.