Questions tagged [posting]

157 questions
2
votes
1 answer

how to prevent remote form posting in ajax?

How can I limit my php file that I use in ajaxRequest.open to be accessed through specific pages? I want to use something like sessions to prevent remote form posting becuase many guessed passwords for a username can be checked through this way. I…
Drust
  • 363
  • 1
  • 11
2
votes
0 answers

Posting MIME encoded attachment to Ariba Supplier Network "Premature end of file"

My problem is a Response after posting a String to Ariba Network. I already had a look at similar question, but I don't found an answer: Code snippet: ' Check only -> no request to send If chkCheckOnly.Checked = False Then Dim byteArray As Byte() =…
2
votes
0 answers

Wait for eglSwapBuffers posting to complete

I need to know when posting completes after eglSwapBuffers. I was thinking eglWaitNative might halt execution until positing is complete, but I find it unclear reading the spec, chapter…
Andreas
  • 5,086
  • 3
  • 16
  • 36
2
votes
1 answer

I am creating a social media sort of website, and I need to let the user dynamically post

the code should add a new article element dynamically using js. Here is my code but it is not working. js to create the article on the page once user clicks post button. ` document.getElementById("post-button").onclick = createPost(); var el =…
Noha
  • 61
  • 1
  • 5
2
votes
2 answers

How can I get the Posts created with ACF in Wordpress?

I added this to my function.php for saving the post: function my_pre_save_post( $post_id ) { // check if this is to be a new post if( $post_id != 'new' ) { return $post_id; } // Create a new post $post = array( …
Suisse
  • 3,467
  • 5
  • 36
  • 59
2
votes
1 answer

WordPress: Use shortcode_atts in other function

Is it possible to use variables from shortcode_atts in another function? Here is my idea: Posting [gallery ids="1,2,3,...n"] Function get_gallery_ids() //get the gallery-ID's from post function get_gallery_ids($atts)…
kenwebart
  • 51
  • 2
  • 9
2
votes
1 answer

Snippet Description is not displayed in Google Plus Post (Android)

I used following code to share post on google plus in android app. But It does not shows description of snippet.It shows everything except description.Is there any reason of this? Intent shareIntent = new PlusShare.Builder(this) …
Ponting
  • 2,248
  • 8
  • 33
  • 61
2
votes
0 answers

open graph tags are not rendering when sharing a video

We are using koala gem for sharing posts on fan page in Ruby on Rails. We are running a video site and we share video page using Open graph tag on fan page wall. Sometime all meta-tags renders and sometime only shared link appear. We have also…
junaidmalik
  • 89
  • 1
  • 4
2
votes
1 answer

Send customized messages to all Facebook friends

Like the video we made in 2010, we are again doing this year a Happy New Year video that contains the name of all our Facebook and non-Facebook friends. In 2010 we had a custom application that used to post on the wall of each of our friends a…
Mikaël Mayer
  • 10,425
  • 6
  • 64
  • 101
2
votes
1 answer

Post to friends wall with IOS SDK 3.0

I am able to post images on users wall with the following :- if (appDelegate.session.isOpen) { FBSession.activeSession = appDelegate.session; [FBRequestConnection startForUploadPhoto:img …
Sanjay
  • 83
  • 2
  • 11
2
votes
2 answers

posting items from asp.net website to craigslist

here an example of posting to craigslist . http://www.craigslist.org/about/bulk_posting_interface in perl language. any craigslist posting example in asp.net ? I converted the perl example (from above link ) into asp.net but still generates an error…
2
votes
1 answer

Facebook Javascript SDK: Error validating access token when posting to feed

I'm trying to implement posting to a user's feed from my website. I am using the Javascript SDK and have managed to get myself logged in, and granted both publish_stream and publish_actions permissions. However when I call the /me/feed post action,…
Terry
  • 31
  • 3
2
votes
1 answer

increase rate limit of twitter

I have web product (third party) that’s built, establishes growth of approx 100k users and all have authenticated their twitter account. But the twitter is limited me to 350 req/h. Is there a way to apply for a higher limit for API calls, or what…
2
votes
2 answers

Posting to /PROFILE_ID/links only accepts link and message parameters

According to the documentation the links endpoint takes picture, name, and description as parameters. From https://developers.facebook.com/docs/reference/api/ under the Publishing section Method Description …
Doug Tabuchi
  • 308
  • 1
  • 10
1
vote
1 answer

Shown on timeline not default selection

I am following the instructions posted on here: https://developers.facebook.com/docs/opengraph/tutorial/#define It adds the item to my timeline, but I can only view it by going to Activity Log, once I hover over the button on the far right, its…
Brian Putt
  • 1,288
  • 2
  • 15
  • 33
1
2
3
10 11