Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I had success setup the Docusign-php-client with everything working!
But how can I access the api directly?
I can only use public/index.php page to test all the samples,
how can I create my own page or own api call?
Is there any simple sample? sorry I‘m newbie on program, please help, thanks!
I'm not clear what you already did since you didn't share code, but I would suggest you start by using https://github.com/docusign/code-examples-php which is a repo with full working code and a PHP app using the DocuSign PHP library/SDK.
Try to use it and see how it work as a means of jump-starting your development.
You can then either modify it to fit your needs or copy/paste relevant pieces of code into your app.
They are 31 PHP examples in here -> https://github.com/docusign/code-examples-php. DocuSign php client is just an API wrapper. If you need more info you can visit https://developers.docusign.com/ for more info
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have a project and using angular as front end and PHP as back end, installed both in different domains, PHP project is complete and working. I have created API in PHP and in angular I will call that API.
can I do like copy PHP project into angular src folder and run or using different domains how can I call API Or how?
what is the most used way for doing this I have seen tutorials over this but not able to get it correctly?
so can you please tell me any way to work,please give me your suggestion and thoughts
This is quite a big question really.
No-one will be able to give you an answer as to how to do what you're trying to achieve in a single stackoverflow post. It's like asking "how do I build a car?" - there are many steps involved to complete this process. Your best bet is to follow a tutorial.
In my experience, having separate applications for front end and backend is quite common.
You should keep your PHP project separate to your Angular project instead of mixing them.
You should follow a tutorial on how to build a full stack application such as these:
https://morioh.com/p/f2ad5d91a8dd
https://phpenthusiast.com/blog/develop-angular-php-app-getting-the-list-of-items
https://www.techiediaries.com/angular/angular-9-php-mysql-database/
Good luck!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am trying to use the plesk api in order to use some of its data to a web application and more specifically the data usage and the permitted storage.
I found this article but I wasn't able to find some php code on how I ll retrieve and display the data. Any guidance would be highly appreciated.
Have you checked https://docs.plesk.com/en-US/17.0/api-rpc/creating-client-software/sending-request-packets.28727/?
It shows how to create requests and next page shows response structure.
PHP examples are at https://github.com/plesk/api-examples/tree/master/php.
To display data you will have to parse the xml result first. You can use SimpleXML to do this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is it possible to develop a system in codeigniter that is capable of receiving reply of emails as well.
Actually I want to develop email receiving feature in codeigniter .
Please guide with complete detail considering me at beiginner level.
Thanks
This involves developing a mail client application. Maybe you will search the web where you will find some open source application that you then should integrate with codeigniter.
Her is a video which can help you to get started:
https://www.youtube.com/watch?v=G-OweUqMPsY
EDIT:
This process is not so simple as you can think but if you download this code you can have a directly inside on what and how you can do it:
https://github.com/Studio182/Crystal-Mail
You can try following libraries or code to receive emails:
https://github.com/bcit-ci/CodeIgniter/wiki/IMAP
also you can user:
https://garrettstjohn.com/article/reading-emails-with-php/
https://garrettstjohn.com/article/extracting-attachments-from-emails-with-php/
hope these will help you build your app.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I'm trying to create an RSS feed by following these instructions but currently there are no results.
Here's my RSS:
http://imodelicon.com/test/instagram/instarss.php?hashtag=carshow
My http host is http://imodelicon.com and Request URI is /test/instagram/instrass.php. Is it correct?
If so, I don't see the hashtag result after the link. Could anyone help if there are other issues?
As suggested by #YakovL, adding as answer.
I tried to deploy your app locally and its working fine.
Since it is not working at your end, the only thing that comes to my mind is your settings.
Check what file_get_contents is returning. It might be blocked by a firewall or your hosting provider.
Also, check file_get_contents() not working for additional pointers.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I created an app with PhoneGap but I need to load some stuff from another domain. I tried jQuery load with a xdomainload plugin but It did not work.
The stuff I need to show run on PHP as the back-end language. I'm really noob - I've seen a few tutorials about JSON but all of them did not work and I ended giving up. Is JSON the easiest way?
Thank you all
Generally speaking, PHP wont run client-side in Cordova. If you're trying to access some sort of backend service that you built using PHP, then that's doable with JSON. Whether it's "the easiest", makes this question to open for interpretation. Generally speaking, a common approach may be to use javascript to communicate with backend services which "talk" JSON between each other. This question might get closed for being to opinion based. But that's my 2 cents.