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 8 years ago.
Improve this question
What is the refsrc parameter in URLs for? There is a URL that is being circulated with our domain, but not sure if this is a safe thing.
Thank you
It will depend on the application/website receiving request with that parameter. I've seen that parameter name used to embed the current page for the link. (I believe I saw that on facebook links?)
In that way when the link is followed, the next app/web site is able to know where the link is coming from if the information is not in the HTTP headers due to redirections or similar situations.
I don't believe it's a standard though.
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 9 hours ago.
Improve this question
Note
I barely have any knowledge on web development but got some idea.
What I'm doing
I'm trying to make a Rust program to scrape any link to a media in a website, like how JDownloader 2 does. Not required to find all media, just any media this is simple enough to get.
Problems
Resolving links to media (Blob, Data)
Site that result differently on browser to a single get request (I have some idea that this might need a web driver but I want to have least dependency as much as possible)
Question
How did JDownloader find these media so I can implement it in my crate? (Just enough information to get start)
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 need to get data from a website. But this website doesn't have an api. Therefore I need to write a bot that can use the search text field and get URL of links. How can I write a bot that can run on iOS with swift?
You can get the html profiles from the URL links, and write regular expressions to parse the html profiles.
You do not need to write a bot. But you may get incomplete html data from normal request, because these websites block the requests other than browsers. If this, you can edit the http header to cheat the website that you really visit by browser.
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 7 years ago.
Improve this question
<img src="img/twitter-button.png" alt="">
I used above code for twitter share in my website. In this method have issue in redirect.
How to fix this issue?
I need solution for mobile website
Well as I understand your question It's flexible enough to redirect you URL after tweet Check out below URL same question there:
Callback after posting message to Twitter
For all available options in this approach:
https://dev.twitter.com/web/tweet-button/web-intent
I would recommend here that you should use open in another window approach see below link:
https://dev.twitter.com/web/intents
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 would like to allow users to send me emails directly through my app, and am wondering if this is possible to do?
Your best and most simple way is to bring up the send email view (or even mailto:) with your app specific email to receive comments and requests on.
Another option is to design a web page that has a couple of fields for information and then hooking it up with PHP.
Just about anything works, it all depends on how you balance user experience and easy of implementation.
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 3 years ago.
Improve this question
what is the correct https link to get JSON data for all the projects at once?
the current link to our dashboard is like this:
https://company.atlassian.net/secure/Dashboard.jspa
Would like to get all of the projects then use another https call to get all the issues for all the projects. Then after that of course look at assignees etc etc. Looking to collect this data to put into an iOS app for R&D purposes.
I am coming at this blind but I have no idea if I also need someone to set up permissions to do this or something. Never used this API before so just doing some discovery here.
You have to speak with the API :)
https://docs.atlassian.com/jira/REST/latest/
Let me know if you need further help.