site:https://pubprd.library.hbs.edu/ upload
https://pubprd.library.hbs.edu/machform-standalone/view.php?id=23086
'form_id': xxxx,
'element_id': x,
'file_token': 'xxxxxxxxxxxxxxxxxxxxxx'
https://pubprd.library.hbs.edu/machform-standalone/data/form_$form_id/files/element_$element_id_$file_token-$pdf_filename.tmp
I didn't understand it still and its not workingDoing a quicksearch gives a few possibilities. I went withCode:site:https://pubprd.library.hbs.edu/ uploadIf you keep an eye on what data is sent when you upload a pdf, you see that form_id, element_id, and file_token are sent along with the binary file. You can get these values from the source of the page:Code:https://pubprd.library.hbs.edu/machform-standalone/view.php?id=23086Code:'form_id': xxxx, 'element_id': x, 'file_token': 'xxxxxxxxxxxxxxxxxxxxxx'
After uploading, you can get the filepath with something like this:Code:https://pubprd.library.hbs.edu/machform-standalone/data/form_$form_id/files/element_$element_id_$file_token-$pdf_filename.tmp
replacing the values such as $form_id with the data you extracted from the form's source.
Well yes, this post has been public for 3 months. Once things are documented in an open forum they usually don't last long. The fundamentals of pdf uploads for sites using the Machform system are still the same though.I didn't understand it still and its not working
How can I uploadWell yes, this post has been public for 3 months. Once things are documented in an open forum they usually don't last long. The fundamentals of pdf uploads for sites using the Machform system are still the same though.
I want to do this PDF submission thing in detailsWell yes, this post has been public for 3 months. Once things are documented in an open forum they usually don't last long. The fundamentals of pdf uploads for sites using the Machform system are still the same though.